about summary refs log tree commit diff
path: root/pkgs/applications/science/logic/redprl/default.nix
blob: 05a7b63f556819e1f3a91cdd6560d5f03f148cac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv, fetchgit, mlton }:
stdenv.mkDerivation {
  pname = "redprl";
  version = "unstable-2017-03-28";

  src = fetchgit {
    url = "https://github.com/RedPRL/sml-redprl.git";
    rev = "bdf027de732e4a8d10f9f954389dfff0c822f18b";
    sha256 = "0cihwnd78d3ksxp6mppifm7xpi3fsii5mixvicajy87ggw8z305c";
    fetchSubmodules = true;
  };
  buildInputs = [ mlton ];
  patchPhase = ''
    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;
  };
}