ceptre: cleanup
Add myself as a maintainer so that I'm made aware of future updates, and get rid of nested `with lib`
This commit is contained in:
parent
1bca079dca
commit
43f4d40e99
@ -20,15 +20,21 @@ stdenv.mkDerivation {
|
|||||||
nativeBuildInputs = [ mlton ];
|
nativeBuildInputs = [ mlton ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp ceptre $out/bin
|
cp ceptre $out/bin
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Linear logic programming language for modeling generative interactive systems";
|
description = "Linear logic programming language for modeling generative interactive systems";
|
||||||
mainProgram = "ceptre";
|
mainProgram = "ceptre";
|
||||||
homepage = "https://github.com/chrisamaphone/interactive-lp";
|
homepage = "https://github.com/chrisamaphone/interactive-lp";
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with lib.maintainers; [
|
||||||
platforms = platforms.unix;
|
NotAShelf
|
||||||
|
pSub
|
||||||
|
];
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
|
license = lib.licenses.unfree;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user