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
@@ -6,11 +6,12 @@ let
generic = { version, sha256, enableIPv6 ? false }:
stdenv.mkDerivation rec {
name = "bird-${version}";
pname = "bird";
inherit version;
src = fetchurl {
inherit sha256;
url = "ftp://bird.network.cz/pub/bird/${name}.tar.gz";
url = "ftp://bird.network.cz/pub/bird/${pname}-${version}.tar.gz";
};
nativeBuildInputs = [ flex bison ];