autoconf: use pname & version instead of name (#127059)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
launchpad/nixpkgs/master
Felix Bühler 3 years ago committed by GitHub
parent 80b5db5713
commit 547cd904d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      pkgs/development/tools/misc/autoconf/default.nix

@ -6,10 +6,11 @@
# files.
stdenv.mkDerivation rec {
name = "autoconf-2.71";
pname = "autoconf";
version = "2.71";
src = fetchurl {
url = "mirror://gnu/autoconf/${name}.tar.xz";
url = "mirror://gnu/autoconf/autoconf-${version}.tar.xz";
sha256 = "197sl23irn6s9pd54rxj5vcp5y8dv65jb9yfqgr2g56cxg7q6k7i";
};

Loading…
Cancel
Save