1 { lib, stdenv, buildPackages, fetchurl, fetchpatch, autoreconfHook, which, pkg-config, perl, guile_2_2, libxml2 }:
3 stdenv.mkDerivation rec {
8 url = "mirror://gnu/autogen/rel${version}/autogen-${version}.tar.xz";
9 sha256 = "16mlbdys8q4ckxlvxyhwkdnh1ay9f6g0cyp1kylkpalgnik398gq";
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";
20 name = "20_no_Werror.diff";
21 sha256 = "08z4s2ifiqyaacjpd9pzr59w8m4j3548kkaq1bwvp2gjn29m680x";
24 name = "30_ag_macros.m4_syntax_error.diff";
25 sha256 = "1z8vmbwbkz3505wd33i2xx91mlf8rwsa7klndq37nw821skxwyh3";
28 name = "31_allow_overriding_AGexe_for_crossbuild.diff";
29 sha256 = "0h9wkc9bqb509knh8mymi43hg6n6sxg2lixvjlchcx7z0j7p8xkf";
32 name = "40_suse_01-autogen-catch-race-error.patch";
33 sha256 = "1cfkym2zds1f85md1m74snxzqmzlj7wd5jivgmyl342856848xav";
36 name = "40_suse_03-gcc9-fix-wrestrict.patch";
37 sha256 = "1ifdwi6gf96jc78jw7q4bfi5fgdldlf2nl55y20h6xb78kv0pznd";
40 name = "40_suse_05-sprintf-overflow.patch";
41 sha256 = "136m62k68w1h5k7iapynvbyipidw35js6pq21lsc6rpxvgp0n469";
44 name = "40_suse_06-autogen-avoid-GCC-code-analysis-bug.patch";
45 sha256 = "1d65zygzw2rpa00s0jy2y1bg29vkbhnjwlb5pv22rfv87zbk6z9q";
47 # Next upstream release will contain guile-3 support. We apply non-invasive
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";
56 url = "https://cygwin.com/cgit/cygwin-packages/autogen/plain/5.16.2-cygwin17.patch?id=6f39882873b3d1290ba3739e0557a84bfe05ba60";
58 hash = "sha256-6dk2imqForUHKhI82CTronWaS3KUWW/EKfA/JZZcRe0=";
62 outputs = [ "bin" "dev" "lib" "out" "man" "info" ];
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
75 export MAN_PAGE_DATE=$(date '+%Y-%m-%d' -d "@$SOURCE_DATE_EPOCH")
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.
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
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"
94 # See: https://sourceforge.net/p/autogen/bugs/187/
95 ++ lib.optionals stdenv.hostPlatform.isDarwin [ "ac_cv_func_utimensat=no" ];
97 #doCheck = true; # not reliable
101 mv $bin/bin/autoopts-config $dev/bin
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
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"
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;