2022-03-30 09:31:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, mlton }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2021-08-23 08:02:39 +00:00
|
|
|
pname = "ceptre";
|
|
|
|
version = "unstable-2016-11-27";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "chrisamaphone";
|
|
|
|
repo = "interactive-lp";
|
2020-04-24 23:36:52 +00:00
|
|
|
rev = "e436fda2ccd44e9c9d226feced9d204311deacf5";
|
2022-03-30 09:31:56 +00:00
|
|
|
sha256 = "sha256-COYrE9O/Y1/ZBNHNakBwrUVklCuk144RF9bjwa3rl5w=";
|
|
|
|
fetchSubmodules = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ mlton ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp ceptre $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A linear logic programming language for modeling generative interactive systems";
|
|
|
|
homepage = "https://github.com/chrisamaphone/interactive-lp";
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2021-03-12 07:09:13 +00:00
|
|
|
platforms = platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|