Commit 973faa3b authored by Henri Menke's avatar Henri Menke
Browse files

bfs: Fix static build

parent f23b37e0
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -30,7 +30,12 @@ stdenv.mkDerivation (finalAttrs: {
    liburing
  ];

  configureFlags = [ "--enable-release" ];
  # The configure script is not from GNU autotools, so most options injected by Nix are not supported
  configurePhase = ''
    runHook preConfigure
    ./configure --prefix=$out --enable-release
    runHook postConfigure
  '';
  makeFlags = [ "PREFIX=$(out)" ];

  meta = {