Merge pull request #139361 from trofi/autogen-guile-3

This commit is contained in:
Sandro 2021-10-04 10:42:26 +02:00 committed by GitHub
commit 43f30849ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ lib, stdenv, buildPackages, fetchurl, autoreconfHook, which, pkg-config, perl, guile, libxml2 }:
{ lib, stdenv, buildPackages, fetchurl, fetchpatch, autoreconfHook, which, pkg-config, perl, guile, libxml2 }:
stdenv.mkDerivation rec {
pname = "autogen";
@ -28,6 +28,13 @@ stdenv.mkDerivation rec {
pname = "31_allow_overriding_AGexe_for_crossbuild";
sha256 = "0h9wkc9bqb509knh8mymi43hg6n6sxg2lixvjlchcx7z0j7p8xkf";
})
# Next upstream release will contain guile-3 support. We apply non-invasive
# patch meanwhile.
(fetchpatch {
name = "guile-3.patch";
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-devel/autogen/files/autogen-5.18.16-guile-3.patch?id=43bcc61c56a5a7de0eaf806efec7d8c0e4c01ae7";
sha256 = "18d7y1f6164dm1wlh7rzbacfygiwrmbc35a7qqsbdawpkhydm5lr";
})
];
outputs = [ "bin" "dev" "lib" "out" "man" "info" ];