bfs: Fix static build

This commit is contained in:
Henri Menke
2026-04-09 18:22:01 +02:00
parent f23b37e079
commit 973faa3bb0
+6 -1
View File
@@ -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 = {