mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 10:44:18 +00:00
mlton20211017Binary: fix and enable strictDeps
This commit is contained in:
parent
83adfcfcd2
commit
54b140d429
@ -4,6 +4,7 @@
|
|||||||
fetchpatch,
|
fetchpatch,
|
||||||
fetchurl,
|
fetchurl,
|
||||||
patchelf,
|
patchelf,
|
||||||
|
bash,
|
||||||
gmp,
|
gmp,
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
@ -41,8 +42,12 @@ stdenv.mkDerivation rec {
|
|||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ gmp ];
|
buildInputs = [
|
||||||
|
bash
|
||||||
|
gmp
|
||||||
|
];
|
||||||
nativeBuildInputs = lib.optional stdenv.hostPlatform.isLinux patchelf;
|
nativeBuildInputs = lib.optional stdenv.hostPlatform.isLinux patchelf;
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
make update \
|
make update \
|
||||||
|
Loading…
Reference in New Issue
Block a user