2016-11-09 10:36:17 +00:00
|
|
|
{ stdenv, fetchFromGitHub, docutils, python2Packages }:
|
2015-06-02 22:56:56 +01:00
|
|
|
|
2015-11-14 20:32:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-06-02 22:56:56 +01:00
|
|
|
name = "git-hub-${version}";
|
2017-08-01 19:49:48 +01:00
|
|
|
version = "0.11.1";
|
2015-06-02 22:56:56 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-08-01 19:49:48 +01:00
|
|
|
sha256 = "15449bqk7nyvbpin5j2hg862cqa7hb4zxkmr8mkqm5hz2jxmxspa";
|
2015-06-02 22:56:56 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
repo = "git-hub";
|
2016-04-29 18:41:41 +01:00
|
|
|
owner = "sociomantic-tsunami";
|
2015-06-02 22:56:56 +01:00
|
|
|
};
|
|
|
|
|
2016-11-09 10:36:17 +00:00
|
|
|
buildInputs = [ python2Packages.python ];
|
|
|
|
nativeBuildInputs = [ python2Packages.docutils ];
|
2015-06-02 22:56:56 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile --replace rst2man rst2man.py
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
installFlags = [ "prefix=$(out)" ];
|
2015-08-15 13:25:55 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# Remove inert ftdetect vim plugin and a README that's a man page subset:
|
|
|
|
rm -r $out/share/{doc,vim}
|
|
|
|
'';
|
2015-11-14 20:32:51 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
2015-06-02 22:56:56 +01:00
|
|
|
}
|