571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
38 lines
869 B
Nix
38 lines
869 B
Nix
{ lib, stdenv, fetchFromGitHub, smlnj }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "celf";
|
|
pversion = "2013-07-25";
|
|
name = "${pname}-${pversion}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clf";
|
|
repo = pname;
|
|
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;
|
|
};
|
|
}
|