git-pr: update package license and output, add jolheiser to maintainers

The license has always been MIT, this commit just updates the meta to reflect that.

There is also a web output that is now renamed similarly to the ssh binary.

Signed-off-by: jolheiser <git@jolheiser.com>
This commit is contained in:
jolheiser 2025-04-04 09:41:57 -05:00
parent eafe219c06
commit 74b6c3d385
No known key found for this signature in database

View File

@ -19,13 +19,17 @@ buildGoModule rec {
postInstall = ''
mv $out/bin/ssh $out/bin/git-ssh
mv $out/bin/web $out/bin/git-web
'';
meta = {
homepage = "https://pr.pico.sh";
description = "Simple git collaboration tool";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ sigmanificient ];
mainProgram = "git-pr";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
sigmanificient
jolheiser
];
mainProgram = "git-ssh";
};
}