git-appraise: 2018-02-26 -> unstable-2022-04-13
This commit is contained in:
parent
260653fe9b
commit
db8f61ceb3
1 changed files with 13 additions and 12 deletions
|
@ -1,23 +1,24 @@
|
||||||
{ lib, buildGoPackage, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "git-appraise-unstable";
|
pname = "git-appraise";
|
||||||
version = "2018-02-26";
|
version = "unstable-2022-04-13";
|
||||||
rev = "2414523905939525559e4b2498c5597f86193b61";
|
|
||||||
|
|
||||||
goPackagePath = "github.com/google/git-appraise";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
inherit rev;
|
|
||||||
owner = "google";
|
owner = "google";
|
||||||
repo = "git-appraise";
|
repo = "git-appraise";
|
||||||
sha256 = "04xkp1jpas1dfms6i9j09bgkydih0q10nhwn75w9ds8hi2qaa3sa";
|
rev = "99aeb0e71544d3e1952e208c339b1aec70968cf3";
|
||||||
|
sha256 = "sha256-TteTI8yGP2sckoJ5xuBB5S8xzm1upXmZPlcDLvXZrpc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
vendorSha256 = "sha256-Lzq4qpDAUjKFA2T685eW9NCfzEhDsn5UR1A1cIaZadE=";
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
description = "Distributed code review system for Git repos";
|
description = "Distributed code review system for Git repos";
|
||||||
homepage = "https://github.com/google/git-appraise";
|
homepage = "https://github.com/google/git-appraise";
|
||||||
license = lib.licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = [ lib.maintainers.vdemeester ];
|
maintainers = with maintainers; [ vdemeester ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue