Unverified Commit a53e3e29 authored by Michael Daniels's avatar Michael Daniels Committed by GitHub
Browse files

bfs: Fix static build (#507817)

parents 143aa79e 973faa3b
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 = {