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:
NotAShelf 2024-11-09 23:22:45 +03:00
parent 1bca079dca
commit 43f4d40e99
No known key found for this signature in database
GPG Key ID: AF26552424E53993

View File

@ -20,15 +20,21 @@ stdenv.mkDerivation {
nativeBuildInputs = [ mlton ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp ceptre $out/bin
runHook postInstall
'';
meta = with lib; {
meta = {
description = "Linear logic programming language for modeling generative interactive systems";
mainProgram = "ceptre";
homepage = "https://github.com/chrisamaphone/interactive-lp";
maintainers = with maintainers; [ pSub ];
platforms = platforms.unix;
maintainers = with lib.maintainers; [
NotAShelf
pSub
];
platforms = lib.platforms.unix;
license = lib.licenses.unfree;
};
}