Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
ldc ? null,
|
|
dcompiler ? ldc,
|
|
}:
|
|
|
|
assert dcompiler != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rund";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dragon-lang";
|
|
repo = "rund";
|
|
rev = "v${version}";
|
|
sha256 = "10x6f1nn294r5qnpacrpcbp348dndz5fv4nz6ih55c61ckpkvgcf";
|
|
};
|
|
|
|
buildInputs = [ dcompiler ];
|
|
buildPhase = ''
|
|
for candidate in dmd ldmd2; do
|
|
echo Checking for DCompiler $candidate ...
|
|
dc=$(type -P $candidate || echo "")
|
|
if [ ! "$dc" == "" ]; then
|
|
break
|
|
fi
|
|
done
|
|
if [ "$dc" == "" ]; then
|
|
exit "Error: could not find a D compiler"
|
|
fi
|
|
echo Using DCompiler $candidate
|
|
$dc -I=$src/src -i -run $src/make.d build --out $NIX_BUILD_TOP
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkPhase = ''
|
|
$NIX_BUILD_TOP/rund make.d test
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv $NIX_BUILD_TOP/rund $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Compiler-wrapper that runs and caches D programs";
|
|
mainProgram = "rund";
|
|
homepage = "https://github.com/dragon-lang/rund";
|
|
license = lib.licenses.boost;
|
|
maintainers = with maintainers; [ jonathanmarler ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|