Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / version-management / git-codereview / default.nix
blob4cd4c68673a7244f175233321a0f37d1a3881671
1 { lib, buildGoModule, fetchFromGitHub, git }:
3 buildGoModule rec {
4   pname = "git-codereview";
5   version = "1.8.0";
7   src = fetchFromGitHub {
8     owner = "golang";
9     repo = "review";
10     rev = "v${version}";
11     hash = "sha256-E6KgFSlWa/MKG6R2P+K4T+P/JOqaIfxdWpsSFGHbihg=";
12   };
14   vendorHash = null;
16   ldflags = [ "-s" "-w" ];
18   nativeCheckInputs = [ git ];
20   meta = with lib; {
21     description = "Manage the code review process for Git changes using a Gerrit server";
22     homepage = "https://golang.org/x/review/git-codereview";
23     license = licenses.bsd3;
24     maintainers = [ maintainers.edef ];
25   };