1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/interpreters/ceptre/default.nix

26 lines
685 B
Nix
Raw Normal View History

{ stdenv, fetchgit, mlton }:
stdenv.mkDerivation rec {
2016-01-03 19:06:12 +00:00
name = "ceptre-2016-01-01";
src = fetchgit {
url = https://github.com/chrisamaphone/interactive-lp;
2016-01-03 19:06:12 +00:00
rev = "b3d21489d4994f03d2982de273eea90bc7fba5d0";
sha256 = "1qpyasr3jg4i2x547yq1dzksvjagvnrmkdd00s108wvw9npc2jj1";
};
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 ];
platforms = with platforms; linux;
};
}