git-codereview: init at 2020-01-15

edef 609650a3 dcfccdfc

+23
+2
pkgs/applications/version-management/git-and-tools/default.nix
··· 70 70 71 71 git-codeowners = callPackage ./git-codeowners { }; 72 72 73 + git-codereview = callPackage ./git-codereview { }; 74 + 73 75 git-cola = callPackage ./git-cola { }; 74 76 75 77 git-crypt = callPackage ./git-crypt { };
+21
pkgs/applications/version-management/git-and-tools/git-codereview/default.nix
··· 1 + { lib, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage { 4 + pname = "git-codereview"; 5 + version = "2020-01-15"; 6 + goPackagePath = "golang.org/x/review"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "golang"; 10 + repo = "review"; 11 + rev = "f51a73253c4da005cfdf18a036e11185c04c8ce3"; 12 + sha256 = "0c4vsyy5zp7pngqn4q87xipndghxyw2x57dkv1kxnrffckx1s3pc"; 13 + }; 14 + 15 + meta = with lib; { 16 + description = "Manage the code review process for Git changes using a Gerrit server"; 17 + homepage = "https://golang.org/x/review/git-codereview"; 18 + license = licenses.bsd3; 19 + maintainers = [ maintainers.edef ]; 20 + }; 21 + }