summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/ceptre/default.nix
blob: 13cd9f1c8eeb50c9490ec8c80b5781179b7a9175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchgit, mlton }:

stdenv.mkDerivation rec {
  name = "ceptre-2015-08-30";

  src = fetchgit {
    url = https://github.com/chrisamaphone/interactive-lp;
    rev = "f16ebee257d63396b8456c48698d255c118d7157";
    sha256 = "0d5s8nzsjl3l7g723588l19j3pyxkdrqnfs9nngv1d9syqyb5395";
  };

  nativeBuildInputs = [ mlton ];

  installPhase = ''
    mkdir -p $out/bin
    cp ceptre $out/bin
  '';

  meta = with stdenv.lib; {
    description = "A linear logic programming language for modeling generative interactive systems";
    homepage = https://github.com/chrisamaphone/interactive-lp;
    maintainers = with maintainers; [ pSub ];
  };
}