git-appraise: init unstable at 2018-02-26

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2018-09-18 09:48:33 +02:00
parent f86e309a94
commit 69f028ea01
No known key found for this signature in database
GPG Key ID: 083CC6FD6EB699A3
2 changed files with 26 additions and 0 deletions

View File

@ -31,6 +31,8 @@ let
git = appendToName "minimal" gitBase;
git-appraise = callPackage ./git-appraise {};
git-fame = callPackage ./git-fame {};
# The full-featured Git.

View File

@ -0,0 +1,24 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "git-appraise-unstable-${version}";
version = "2018-02-26";
rev = "2414523905939525559e4b2498c5597f86193b61";
goPackagePath = "github.com/google/git-appraise";
src = fetchFromGitHub {
inherit rev;
owner = "google";
repo = "git-appraise";
sha256 = "04xkp1jpas1dfms6i9j09bgkydih0q10nhwn75w9ds8hi2qaa3sa";
};
meta = {
description = "Distributed code review system for Git repos";
homepage = https://github.com/google/git-appraise;
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.vdemeester ];
};
}