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

45 lines
1.2 KiB
Nix
Raw Normal View History

2017-10-26 10:16:54 +00:00
{ stdenv, fetchFromGitHub, docutils, gitMinimal, python2Packages }:
stdenv.mkDerivation rec {
name = "git-hub-${version}";
2017-10-26 10:16:54 +00:00
version = "1.0.0";
src = fetchFromGitHub {
2017-10-26 10:16:54 +00:00
sha256 = "07756pidrm4cph3nm90z16imvnylvz3fw4369wrglbdr27filf3x";
rev = "v${version}";
repo = "git-hub";
2016-04-29 17:41:41 +00:00
owner = "sociomantic-tsunami";
};
2016-11-09 10:36:17 +00:00
buildInputs = [ python2Packages.python ];
2017-10-26 10:16:54 +00:00
nativeBuildInputs = [
gitMinimal # Used during build to generate Bash completion.
python2Packages.docutils
];
postPatch = ''
patchShebangs .
'';
enableParallelBuilding = true;
2017-10-26 10:16:54 +00:00
installFlags = [ "prefix=$(out)" "sysconfdir=$(out)/etc" ];
postInstall = ''
# Remove inert ftdetect vim plugin and a README that's a man page subset:
rm -r $out/share/{doc,vim}
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Git command line interface to GitHub";
longDescription = ''
A simple command line interface to GitHub, enabling most useful GitHub
tasks (like creating and listing pull request or issues) to be accessed
directly through the Git command line.
'';
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}