tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
automake114x: remove
Robin Gloster
8 years ago
bfdd9d2e
7e5ebed9
-43
2 changed files
expand all
collapse all
unified
split
pkgs
development
tools
misc
automake
automake-1.14.x.nix
top-level
all-packages.nix
-41
pkgs/development/tools/misc/automake/automake-1.14.x.nix
···
1
1
-
{ stdenv, fetchurl, perl, autoconf, makeWrapper, doCheck ? false }:
2
2
-
3
3
-
stdenv.mkDerivation rec {
4
4
-
name = "automake-1.14.1";
5
5
-
6
6
-
src = fetchurl {
7
7
-
url = "mirror://gnu/automake/${name}.tar.xz";
8
8
-
sha256 = "0s86rzdayj1licgj35q0mnynv5xa8f4p32m36blc5jk9id5z1d59";
9
9
-
};
10
10
-
11
11
-
buildInputs = [ perl autoconf ];
12
12
-
13
13
-
setupHook = ./setup-hook.sh;
14
14
-
15
15
-
# Disable indented log output from Make, otherwise "make.test" will
16
16
-
# fail.
17
17
-
preCheck = "unset NIX_INDENT_MAKE";
18
18
-
inherit doCheck;
19
19
-
20
20
-
# The test suite can run in parallel.
21
21
-
enableParallelBuilding = true;
22
22
-
23
23
-
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
24
24
-
# "fixed" path in generated files!
25
25
-
dontPatchShebangs = true;
26
26
-
27
27
-
meta = {
28
28
-
branch = "1.14";
29
29
-
homepage = http://www.gnu.org/software/automake/;
30
30
-
description = "GNU standard-compliant makefile generator";
31
31
-
license = stdenv.lib.licenses.gpl2Plus;
32
32
-
33
33
-
longDescription = ''
34
34
-
GNU Automake is a tool for automatically generating
35
35
-
`Makefile.in' files compliant with the GNU Coding
36
36
-
Standards. Automake requires the use of Autoconf.
37
37
-
'';
38
38
-
39
39
-
platforms = stdenv.lib.platforms.all;
40
40
-
};
41
41
-
}
-2
pkgs/top-level/all-packages.nix
···
6607
6607
6608
6608
automake113x = callPackage ../development/tools/misc/automake/automake-1.13.x.nix { };
6609
6609
6610
6610
-
automake114x = callPackage ../development/tools/misc/automake/automake-1.14.x.nix { };
6611
6611
-
6612
6610
automake115x = callPackage ../development/tools/misc/automake/automake-1.15.x.nix { };
6613
6611
6614
6612
automoc4 = callPackage ../development/tools/misc/automoc4 { };