fd9a07c7d4
Updates from-git-source.nix to use the one-liner to fix up the bash shebang lines.
36 lines
621 B
Nix
36 lines
621 B
Nix
{ fetchgit
|
|
, gmp
|
|
, mltonBootstrap
|
|
, url ? "https://github.com/mlton/mlton"
|
|
, rev
|
|
, sha256
|
|
, stdenv
|
|
, version
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mlton-${version}";
|
|
|
|
src = fetchgit {
|
|
inherit url rev sha256;
|
|
};
|
|
|
|
buildInputs = [mltonBootstrap gmp];
|
|
|
|
preBuild = ''
|
|
find . -type f | grep -v -e '\.tgz''$' | xargs sed -i "s@/usr/bin/env bash@$(type -p bash)@"
|
|
|
|
makeFlagsArray=(
|
|
MLTON_VERSION="${version} ${rev}"
|
|
CC="$(type -p cc)"
|
|
PREFIX="$out"
|
|
WITH_GMP_INC_DIR="${gmp.dev}/include"
|
|
WITH_GMP_LIB_DIR="${gmp}/lib"
|
|
)
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = import ./meta.nix;
|
|
}
|