1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00

Add git-hub: command line GitHub interface

Rather cool, actually.
This commit is contained in:
Tobias Geerinckx-Rice 2015-06-02 23:56:56 +02:00
parent 33a1b14b06
commit 1a64d9251c
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ stdenv, fetchFromGitHub, docutils, python }:
let version = "0.9.0"; in
stdenv.mkDerivation {
name = "git-hub-${version}";
src = fetchFromGitHub {
sha256 = "0c4kq4a906lr8nzway7qh0560n2ydvidh9rlffh44902rd48kp0h";
rev = "v${version}";
repo = "git-hub";
owner = "sociomantic";
};
meta = with stdenv.lib; {
inherit version;
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.
'';
homepage = https://github.com/sociomantic/git-hub;
license = licenses.gpl3Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
buildInputs = [ python ];
nativeBuildInputs = [ docutils ];
postPatch = ''
substituteInPlace Makefile --replace rst2man rst2man.py
patchShebangs .
'';
enableParallelBuilding = true;
installFlags = "prefix=$(out)";
}

View file

@ -1519,6 +1519,8 @@ let
gifsicle = callPackage ../tools/graphics/gifsicle { };
git-hub = callPackage ../applications/version-management/git-hub { };
gitlab = callPackage ../applications/version-management/gitlab {
ruby = ruby_2_1_3;
};