mlton20211017Binary: fix and enable strictDeps

This commit is contained in:
FliegendeWurst 2024-12-06 16:42:01 +01:00
parent 83adfcfcd2
commit 54b140d429

View File

@ -4,6 +4,7 @@
fetchpatch,
fetchurl,
patchelf,
bash,
gmp,
}:
let
@ -41,8 +42,12 @@ stdenv.mkDerivation rec {
})
];
buildInputs = [ gmp ];
buildInputs = [
bash
gmp
];
nativeBuildInputs = lib.optional stdenv.hostPlatform.isLinux patchelf;
strictDeps = true;
buildPhase = ''
make update \