mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
38 lines
809 B
Nix
38 lines
809 B
Nix
{ lib, stdenv, fetchFromGitHub, mlton }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "redprl";
|
|
version = "unstable-2019-11-04";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RedPRL";
|
|
repo = "sml-redprl";
|
|
rev = "c72190de76f7ed1cfbe1d2046c96e99ac5022b0c";
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-xrQT5o0bsIN+mCYUOz9iY4+j3HGROb1I6R2ADcLy8n4=";
|
|
};
|
|
|
|
buildInputs = [ mlton ];
|
|
|
|
postPatch = ''
|
|
patchShebangs ./script/
|
|
'';
|
|
|
|
buildPhase = ''
|
|
./script/mlton.sh
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv ./bin/redprl $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A proof assistant for Nominal Computational Type Theory";
|
|
homepage = "http://www.redprl.org/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ acowley ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|