45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, gitMinimal, python2Packages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "git-hub";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sociomantic-tsunami";
|
|
repo = "git-hub";
|
|
rev = "v${version}";
|
|
sha256 = "0jkzg7vjvgb952qncndhki7n70714w61flbzf4mdcjc286lqjvwb";
|
|
};
|
|
|
|
buildInputs = [ python2Packages.python ];
|
|
nativeBuildInputs = [
|
|
gitMinimal # Used during build to generate Bash completion.
|
|
python2Packages.docutils
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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.all;
|
|
};
|
|
}
|