Unverified Commit 74b6c3d3 authored by jolheiser's avatar jolheiser
Browse files

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: default avatarjolheiser <git@jolheiser.com>
parent eafe219c
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -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";
  };
}