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
43 lines
869 B
Nix
43 lines
869 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
smlnj,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "celf";
|
|
pversion = "2013-07-25";
|
|
name = "celf-${pversion}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clf";
|
|
repo = "celf";
|
|
rev = "d61d95900ab316468ae850fa34a2fe9488bc5b59";
|
|
sha256 = "0slrwcxglp0sdbp6wr65cdkl5wcap2i0fqxbwqfi1q3cpb6ph6hq";
|
|
};
|
|
|
|
buildInputs = [ smlnj ];
|
|
|
|
# (can also build with MLton)
|
|
buildPhase = ''
|
|
export SMLNJ_HOME=${smlnj}
|
|
sml < main-export.sml
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp .heap* $out/bin/
|
|
./.mkexec ${smlnj}/bin/sml $out/bin celf
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Linear logic programming system";
|
|
mainProgram = "celf";
|
|
homepage = "https://github.com/clf/celf";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|