Merge pull request #247510 from wegank/guile-fibers

guile-fibers: fix cross
This commit is contained in:
Weijia Wang 2023-08-06 17:05:28 +02:00 committed by GitHub
commit 4ba880f50c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,17 +19,23 @@ stdenv.mkDerivation rec {
hash = "sha256-jJKA5JEHsmqQ/IKb1aNmOtoVaGKNjcgTKyo5VCiJbXM=";
};
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
guile
pkg-config
texinfo # for makeinfo
];
buildInputs = [
guile
libevent
texinfo
];
autoreconfPhase = "./autogen.sh";
makeFlags = [
"GUILE_AUTO_COMPILE=0"
];
meta = with lib; {
homepage = "https://github.com/wingo/fibers";