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

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Felix Bühler 2021-06-17 01:17:31 +02:00 committed by GitHub
parent 80b5db5713
commit 547cd904d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";
};