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
+3 -2
View File
@@ -11,10 +11,11 @@ assert enablePython -> python3 != null;
let version = "9.14.4"; in
stdenv.mkDerivation rec {
name = "bind-${version}";
pname = "bind";
inherit version;
src = fetchurl {
url = "https://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
url = "https://ftp.isc.org/isc/bind9/${version}/${pname}-${version}.tar.gz";
sha256 = "0gxqws7ml15lwkjw9mdcd759gv5kk3s9m17j3vrp9448ls1gnbii";
};