3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/git-and-tools/git-extras/default.nix

24 lines
659 B
Nix
Raw Normal View History

2014-11-25 21:40:25 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "git-extras-${version}";
2015-09-29 11:27:22 +01:00
version = "3.0.0";
2014-11-25 21:40:25 +00:00
src = fetchurl {
url = "https://github.com/tj/git-extras/archive/${version}.tar.gz";
2015-09-29 11:27:22 +01:00
sha256 = "01x8n9i5sgl1s53sgglg9sd9lyp35dhvdhwlx03yimi4i11441s9";
2014-11-25 21:40:25 +00:00
};
phases = [ "unpackPhase" "installPhase" ];
makeFlags = "DESTDIR=$(out) PREFIX=";
meta = with stdenv.lib; {
homepage = https://github.com/tj/git-extras;
description = "GIT utilities -- repo summary, repl, changelog population, author commit percentages and more";
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.spwhitt ];
};
}