treewide: name -> pname

This commit is contained in:
volth
2019-08-17 10:54:38 +00:00
parent fe9a3e3e63
commit c814d72b51
520 changed files with 1164 additions and 622 deletions
@@ -4,12 +4,13 @@
let version = "1.1.0"; in
stdenv.mkDerivation rec {
name = "liblastfm-${version}";
pname = "liblastfm";
inherit version;
# Upstream does not package git tags as tarballs. Get tarball from github.
src = fetchurl {
url = "https://github.com/lastfm/liblastfm/tarball/${version}";
name = "${name}.tar.gz";
name = "${pname}-${version}.tar.gz";
sha256 = "1j34xc30vg7sfszm2jx9mlz9hy7p1l929fka9wnfcpbib8gfi43x";
};