depot/third_party/nixpkgs/pkgs/development/interpreters/ceptre/default.nix
Default email 07b8fe0546 Project import generated by Copybara.
GitOrigin-RevId: 916ee862e87ac5ee2439f2fb7856386b4dc906ae
2021-03-12 08:09:13 +01:00

25 lines
676 B
Nix

{ lib, stdenv, fetchgit, mlton }:
stdenv.mkDerivation {
name = "ceptre-2016-11-27";
src = fetchgit {
url = "https://github.com/chrisamaphone/interactive-lp";
rev = "e436fda2ccd44e9c9d226feced9d204311deacf5";
sha256 = "174pxfnw3qyn2w8qxmx45fa68iddf106mkfi0kcmyqxzsc9jprh8";
};
nativeBuildInputs = [ mlton ];
installPhase = ''
mkdir -p $out/bin
cp ceptre $out/bin
'';
meta = with lib; {
description = "A linear logic programming language for modeling generative interactive systems";
homepage = "https://github.com/chrisamaphone/interactive-lp";
maintainers = with maintainers; [ pSub ];
platforms = platforms.unix;
};
}