2017-10-26 12:16:54 +02:00
|
|
|
{ stdenv, fetchFromGitHub, docutils, gitMinimal, python2Packages }:
|
2015-06-02 23:56:56 +02:00
|
|
|
|
2015-11-14 21:32:51 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-06-02 23:56:56 +02:00
|
|
|
name = "git-hub-${version}";
|
2017-10-26 12:16:54 +02:00
|
|
|
version = "1.0.0";
|
2015-06-02 23:56:56 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-10-26 12:16:54 +02:00
|
|
|
sha256 = "07756pidrm4cph3nm90z16imvnylvz3fw4369wrglbdr27filf3x";
|
2015-06-02 23:56:56 +02:00
|
|
|
rev = "v${version}";
|
|
|
|
repo = "git-hub";
|
2016-04-29 19:41:41 +02:00
|
|
|
owner = "sociomantic-tsunami";
|
2015-06-02 23:56:56 +02:00
|
|
|
};
|
|
|
|
|
2016-11-09 11:36:17 +01:00
|
|
|
buildInputs = [ python2Packages.python ];
|
2017-10-26 12:16:54 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gitMinimal # Used during build to generate Bash completion.
|
|
|
|
python2Packages.docutils
|
|
|
|
];
|
2015-06-02 23:56:56 +02:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-10-26 12:16:54 +02:00
|
|
|
installFlags = [ "prefix=$(out)" "sysconfdir=$(out)/etc" ];
|
2015-08-15 14:25:55 +02: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 21:32:51 +01: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;
|
2018-01-22 06:36:10 +01:00
|
|
|
platforms = platforms.all;
|
2015-11-14 21:32:51 +01:00
|
|
|
};
|
2015-06-02 23:56:56 +02:00
|
|
|
}
|