Skip to content

Commit

Permalink
ceptre: cleanup
Browse files Browse the repository at this point in the history
Add myself as a maintainer so that I'm made aware of future updates, and get rid of nested `with lib`
  • Loading branch information
NotAShelf committed Nov 11, 2024
1 parent 1bca079 commit 43f4d40
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pkgs/by-name/ce/ceptre/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
}

0 comments on commit 43f4d40

Please sign in to comment.