cligh: init at 0.3

fixes #23914
This commit is contained in:
Jörg Thalheim 2017-03-16 00:57:09 +01:00
parent 09cfbc8cc3
commit 26045faaaf
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, pythonPackages }:
buildPythonApplication rec {
name = "cligh-${version}";
version = "0.3";
doCheck = false; # no tests
src = fetchFromGitHub {
owner = "CMB";
repo = "cligh";
rev = "v${version}";
sha256 = "0d1fd78rzl2n75xpmy1gnxh1shvcs4qm0j4qqszqvfriwkg2flxn";
};
propagatedBuildInputs = with pythonPackages; [ pyxdg PyGithub ];
meta = with stdenv.lib; {
homepage = "http://the-brannons.com/software/cligh.html";
description = "A simple command-line interface to the facilities of Github";
longDescription = ''
Cligh is a simple command-line interface to the facilities of GitHub.
It is written by Christopher Brannon chris@the-brannons.com. The
current version is 0.3, released July 23, 2016. This program is still
in the early stage of development. It is by no means feature-complete.
A friend and I consider it useful, but others may not.
'';
platforms = platforms.all;
license = licenses.bsd3;
maintainers = [ maintainers.jhhuh ];
};
}

View File

@ -12960,6 +12960,8 @@ with pkgs;
clfswm = callPackage ../applications/window-managers/clfswm { };
cligh = callPackage ../development/tools/github/cligh {};
clipgrab = callPackage ../applications/video/clipgrab { };
clipit = callPackage ../applications/misc/clipit { };