summary refs log tree commit diff
path: root/pkgs/development/tools/misc/automake
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-11-09 20:42:54 +0100
committerFelix Buehler <account@buehler.rocks>2021-11-10 14:03:21 +0100
commit345d71ffd0a4f1693cb5d1e74b49fe5c34405705 (patch)
tree8d0b5efaca0bb793655edeb3914fa93c32e13bfc /pkgs/development/tools/misc/automake
parent7a7550f2141658428eaebbeb2684e6a7619172a1 (diff)
downloadnixpkgs-345d71ffd0a4f1693cb5d1e74b49fe5c34405705.tar
nixpkgs-345d71ffd0a4f1693cb5d1e74b49fe5c34405705.tar.gz
nixpkgs-345d71ffd0a4f1693cb5d1e74b49fe5c34405705.tar.bz2
nixpkgs-345d71ffd0a4f1693cb5d1e74b49fe5c34405705.tar.lz
nixpkgs-345d71ffd0a4f1693cb5d1e74b49fe5c34405705.tar.xz
nixpkgs-345d71ffd0a4f1693cb5d1e74b49fe5c34405705.tar.zst
nixpkgs-345d71ffd0a4f1693cb5d1e74b49fe5c34405705.zip
pkgs/development: rename name to pname&version
Diffstat (limited to 'pkgs/development/tools/misc/automake')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.11.x.nix5
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.15.x.nix5
2 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/automake/automake-1.11.x.nix b/pkgs/development/tools/misc/automake/automake-1.11.x.nix
index 5e3167d182d..02d9f4c4872 100644
--- a/pkgs/development/tools/misc/automake/automake-1.11.x.nix
+++ b/pkgs/development/tools/misc/automake/automake-1.11.x.nix
@@ -1,7 +1,8 @@
 { lib, stdenv, fetchurl, perl, autoconf }:
 
 stdenv.mkDerivation rec {
-  name = "automake-1.11.6";
+  pname = "automake";
+  version = "1.11.6";
 
   # TODO: Remove the `aclocal' wrapper when $ACLOCAL_PATH support is
   # available upstream; see
@@ -11,7 +12,7 @@ stdenv.mkDerivation rec {
   setupHook = ./setup-hook.sh;
 
   src = fetchurl {
-    url = "mirror://gnu/automake/${name}.tar.xz";
+    url = "mirror://gnu/automake/automake-${version}.tar.xz";
     sha256 = "1ffbc6cc41f0ea6c864fbe9485b981679dc5e350f6c4bc6c3512f5a4226936b5";
   };
 
diff --git a/pkgs/development/tools/misc/automake/automake-1.15.x.nix b/pkgs/development/tools/misc/automake/automake-1.15.x.nix
index 0088eb74cc4..470827c2b45 100644
--- a/pkgs/development/tools/misc/automake/automake-1.15.x.nix
+++ b/pkgs/development/tools/misc/automake/automake-1.15.x.nix
@@ -1,10 +1,11 @@
 { lib, stdenv, fetchurl, perl, autoconf }:
 
 stdenv.mkDerivation rec {
-  name = "automake-1.15.1";
+  pname = "automake";
+  version = "1.15.1";
 
   src = fetchurl {
-    url = "mirror://gnu/automake/${name}.tar.xz";
+    url = "mirror://gnu/automake/automake-${version}.tar.xz";
     sha256 = "1bzd9g32dfm4rsbw93ld9x7b5nc1y6i4m6zp032qf1i28a8s6sxg";
   };