nixpkgs/pkgs/applications/version-management/git-and-tools/git-big-picture/default.nix

31 lines
799 B
Nix
Raw Normal View History

{ fetchFromGitHub, python2Packages, stdenv, git, graphviz }:
2017-07-07 11:58:02 +00:00
python2Packages.buildPythonApplication rec {
pname = "git-big-picture";
version = "0.9.0";
2017-07-07 11:58:02 +00:00
name = "${pname}-${version}";
2017-07-07 11:58:02 +00:00
src = fetchFromGitHub {
owner = "esc";
repo = pname;
rev = "v${version}";
sha256 = "1h283gzs4nx8lrarmr454zza52cilmnbdrqn1n33v3cn1rayl3c9";
};
buildInputs = [ git graphviz ];
2017-07-07 11:58:02 +00:00
postFixup = ''
wrapProgram $out/bin/git-big-picture \
--prefix PATH ":" ${ stdenv.lib.makeBinPath buildInputs }
'';
2017-07-07 11:58:02 +00:00
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 ];
2017-07-07 11:58:02 +00:00
};
}