biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / version-management / git-codereview / default.nix
blob2bbcc10202af137c30c0441baeea12e0d4138e2b
1 { lib, buildGoModule, fetchFromGitHub, git }:
3 buildGoModule rec {
4   pname = "git-codereview";
5   version = "1.10.0";
7   src = fetchFromGitHub {
8     owner = "golang";
9     repo = "review";
10     rev = "v${version}";
11     hash = "sha256-aLvx9lYQJYUw2XBj+2P+yEJMboUjmHKzxP5QA3N93JA=";
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     mainProgram = "git-codereview";
26   };