mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
Merge pull request #27206 from nthorne/InitGitBigPicture
git-big-picture: init at 0.9.0
This commit is contained in:
commit
9d28cd9ca4
|
@ -0,0 +1,30 @@
|
|||
{ fetchFromGitHub, python2Packages, stdenv, git, graphviz }:
|
||||
|
||||
python2Packages.buildPythonApplication rec {
|
||||
pname = "git-big-picture";
|
||||
version = "0.9.0";
|
||||
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "esc";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1h283gzs4nx8lrarmr454zza52cilmnbdrqn1n33v3cn1rayl3c9";
|
||||
};
|
||||
|
||||
buildInputs = [ git graphviz ];
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/git-big-picture \
|
||||
--prefix PATH ":" ${ stdenv.lib.makeBinPath buildInputs }
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Tool for visualization of Git repositories.";
|
||||
homepage = https://github.com/esc/git-big-picture;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.nthorne ];
|
||||
};
|
||||
}
|
|
@ -2067,6 +2067,8 @@ with pkgs;
|
|||
|
||||
gifsicle = callPackage ../tools/graphics/gifsicle { };
|
||||
|
||||
git-big-picture = callPackage ../applications/version-management/git-and-tools/git-big-picture { };
|
||||
|
||||
git-crecord = callPackage ../applications/version-management/git-crecord { };
|
||||
|
||||
git-lfs = callPackage ../applications/version-management/git-lfs { };
|
||||
|
|
Loading…
Reference in a new issue