Unverified Commit 4ba880f5 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #247510 from wegank/guile-fibers

guile-fibers: fix cross
parents 596754d2 399c6c7b
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -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";