1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/version-management/git-and-tools/git-big-picture/default.nix

24 lines
664 B
Nix
Raw Normal View History

2017-07-07 12:58:02 +01:00
{ fetchgit, python2Packages, stdenv, git, graphviz }:
python2Packages.buildPythonApplication rec {
pname = "git-big-picture";
version = "0.9.0";
name = "${pname}-${version}";
src = fetchgit {
url = "https://github.com/esc/${pname}.git";
rev = "fbe3b9504e255da859067fd58e90d849d63e5381";
sha256 = "1h283gzs4nx8lrarmr454zza52cilmnbdrqn1n33v3cn1rayl3c9";
};
propagatedBuildInputs = [ git graphviz ];
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;
};
}