1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/interpreters/ceptre/default.nix
2016-01-03 20:06:12 +01:00

25 lines
646 B
Nix

{ stdenv, fetchgit, mlton }:
stdenv.mkDerivation rec {
name = "ceptre-2016-01-01";
src = fetchgit {
url = https://github.com/chrisamaphone/interactive-lp;
rev = "b3d21489d4994f03d2982de273eea90bc7fba5d0";
sha256 = "01f72q435kmf3mkgnn47hlnv6k3i5kjb26pbjrwvysc6am33jlcb";
};
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 ];
};
}