forked from mirrors/nixpkgs
40 lines
1 KiB
Nix
40 lines
1 KiB
Nix
|
{ 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)";
|
||
|
}
|