mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
mlton20211017Binary: fix and enable strictDeps
This commit is contained in:
parent
83adfcfcd2
commit
54b140d429
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user