1{ lib, stdenv, buildPackages, fetchurl, fetchpatch, autoreconfHook, which, pkg-config, perl, guile_2_2, libxml2 }:
2
3stdenv.mkDerivation rec {
4 pname = "autogen";
5 version = "5.18.16";
6
7 src = fetchurl {
8 url = "mirror://gnu/autogen/rel${version}/autogen-${version}.tar.xz";
9 sha256 = "16mlbdys8q4ckxlvxyhwkdnh1ay9f6g0cyp1kylkpalgnik398gq";
10 };
11
12 patches = let
13 dp = { ver ? "1%255.18.16-5", name, sha256 }: fetchurl {
14 url = "https://salsa.debian.org/debian/autogen/-/raw/debian/${ver}"
15 + "/debian/patches/${name}?inline=false";
16 inherit name sha256;
17 };
18 in [
19 (dp {
20 name = "20_no_Werror.diff";
21 sha256 = "08z4s2ifiqyaacjpd9pzr59w8m4j3548kkaq1bwvp2gjn29m680x";
22 })
23 (dp {
24 name = "30_ag_macros.m4_syntax_error.diff";
25 sha256 = "1z8vmbwbkz3505wd33i2xx91mlf8rwsa7klndq37nw821skxwyh3";
26 })
27 (dp {
28 name = "31_allow_overriding_AGexe_for_crossbuild.diff";
29 sha256 = "0h9wkc9bqb509knh8mymi43hg6n6sxg2lixvjlchcx7z0j7p8xkf";
30 })
31 (dp {
32 name = "40_suse_01-autogen-catch-race-error.patch";
33 sha256 = "1cfkym2zds1f85md1m74snxzqmzlj7wd5jivgmyl342856848xav";
34 })
35 (dp {
36 name = "40_suse_03-gcc9-fix-wrestrict.patch";
37 sha256 = "1ifdwi6gf96jc78jw7q4bfi5fgdldlf2nl55y20h6xb78kv0pznd";
38 })
39 (dp {
40 name = "40_suse_05-sprintf-overflow.patch";
41 sha256 = "136m62k68w1h5k7iapynvbyipidw35js6pq21lsc6rpxvgp0n469";
42 })
43 (dp {
44 name = "40_suse_06-autogen-avoid-GCC-code-analysis-bug.patch";
45 sha256 = "1d65zygzw2rpa00s0jy2y1bg29vkbhnjwlb5pv22rfv87zbk6z9q";
46 })
47 # Next upstream release will contain guile-3 support. We apply non-invasive
48 # patch meanwhile.
49 (fetchpatch {
50 name = "guile-3.patch";
51 url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-devel/autogen/files/autogen-5.18.16-guile-3.patch?id=43bcc61c56a5a7de0eaf806efec7d8c0e4c01ae7";
52 sha256 = "18d7y1f6164dm1wlh7rzbacfygiwrmbc35a7qqsbdawpkhydm5lr";
53 })
54 (fetchpatch {
55 name = "lfs64.patch";
56 url = "https://cygwin.com/cgit/cygwin-packages/autogen/plain/5.16.2-cygwin17.patch?id=6f39882873b3d1290ba3739e0557a84bfe05ba60";
57 stripLen = 1;
58 hash = "sha256-6dk2imqForUHKhI82CTronWaS3KUWW/EKfA/JZZcRe0=";
59 })
60 ];
61
62 outputs = [ "bin" "dev" "lib" "out" "man" "info" ];
63
64 nativeBuildInputs = [
65 which pkg-config perl autoreconfHook/*patches applied*/
66 ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
67 # autogen needs a build autogen when cross-compiling
68 buildPackages.buildPackages.autogen buildPackages.texinfo
69 ];
70 buildInputs = [
71 guile_2_2 libxml2
72 ];
73
74 preConfigure = ''
75 export MAN_PAGE_DATE=$(date '+%Y-%m-%d' -d "@$SOURCE_DATE_EPOCH")
76 '';
77
78 configureFlags = [
79 "--with-libxml2=${libxml2.dev}"
80 "--with-libxml2-cflags=-I${libxml2.dev}/include/libxml2"
81 # Make sure to use a static value for the timeout. If we do not set a value
82 # here autogen will select one based on the execution time of the configure
83 # phase which is not really reproducible.
84 #
85 # If you are curious about the number 78, it has been cargo-culted from
86 # Debian: https://salsa.debian.org/debian/autogen/-/blob/master/debian/rules#L21
87 "--enable-timeout=78"
88 "CFLAGS=-D_FILE_OFFSET_BITS=64"
89 ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
90 # the configure check for regcomp wants to run a host program
91 "libopts_cv_with_libregex=yes"
92 #"MAKEINFO=${buildPackages.texinfo}/bin/makeinfo"
93 ]
94 # See: https://sourceforge.net/p/autogen/bugs/187/
95 ++ lib.optionals stdenv.isDarwin [ "ac_cv_func_utimensat=no" ];
96
97 #doCheck = true; # not reliable
98
99 postInstall = ''
100 mkdir -p $dev/bin
101 mv $bin/bin/autoopts-config $dev/bin
102
103 for f in $lib/lib/autogen/tpl-config.tlib $out/share/autogen/tpl-config.tlib; do
104 sed -e "s|$dev/include|/no-such-autogen-include-path|" -i $f
105 sed -e "s|$bin/bin|/no-such-autogen-bin-path|" -i $f
106 sed -e "s|$lib/lib|/no-such-autogen-lib-path|" -i $f
107 done
108
109 '' + lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
110 # remove build directory (/build/**, or /tmp/nix-build-**) from RPATHs
111 for f in "$bin"/bin/*; do
112 local nrp="$(patchelf --print-rpath "$f" | sed -E 's@(:|^)'$NIX_BUILD_TOP'[^:]*:@\1@g')"
113 patchelf --set-rpath "$nrp" "$f"
114 done
115 '';
116
117 meta = with lib; {
118 description = "Automated text and program generation tool";
119 license = with licenses; [ gpl3Plus lgpl3Plus ];
120 homepage = "https://www.gnu.org/software/autogen/";
121 platforms = platforms.all;
122 maintainers = [ ];
123 };
124}