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

31 lines
771 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ fetchFromGitHub, python2Packages, lib, stdenv, git, graphviz }:
2017-07-07 11:58:02 +00:00
python2Packages.buildPythonApplication rec {
pname = "git-big-picture";
version = "0.10.1";
2017-07-07 11:58:02 +00:00
src = fetchFromGitHub {
owner = "esc";
repo = pname;
rev = "v${version}";
sha256 = "0b0zdq7d7k7f6p3wwc799347fraphbr20rxd1ysnc4xi1cj4wpmi";
};
buildInputs = [ git graphviz ];
2017-07-07 11:58:02 +00:00
checkInputs = [ git ];
postFixup = ''
wrapProgram $out/bin/git-big-picture \
2021-01-15 13:21:58 +00:00
--prefix PATH ":" ${ 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";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.nthorne ];
2017-07-07 11:58:02 +00:00
};
}