Merge pull request #133633 from SuperSandro2000/automake

automake: switch to pname + version
This commit is contained in:
Jörg Thalheim
2021-08-13 08:01:55 +01:00
committed by GitHub
@@ -2,10 +2,11 @@
stdenv.mkDerivation rec {
# When updating, beware of https://github.com/NixOS/nixpkgs/pull/131928#issuecomment-896614165
name = "automake-1.16.3";
pname = "automake";
version = "1.16.3";
src = fetchurl {
url = "mirror://gnu/automake/${name}.tar.xz";
url = "mirror://gnu/automake/automake-${version}.tar.xz";
sha256 = "0fmz2fhmzcpacnprl5msphvaflwiy0hvpgmqlgfny72ddijzfazz";
};
@@ -27,18 +28,16 @@ stdenv.mkDerivation rec {
# "fixed" path in generated files!
dontPatchShebangs = true;
meta = {
meta = with lib; {
branch = "1.16";
homepage = "https://www.gnu.org/software/automake/";
description = "GNU standard-compliant makefile generator";
license = lib.licenses.gpl2Plus;
license = licenses.gpl2Plus;
longDescription = ''
GNU Automake is a tool for automatically generating
`Makefile.in' files compliant with the GNU Coding
Standards. Automake requires the use of Autoconf.
'';
platforms = lib.platforms.all;
platforms = platforms.all;
};
}