ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ lib, fetchFromGitHub, buildPythonApplication, pyxdg, pygithub }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "cligh";
|
|
version = "0.3";
|
|
|
|
doCheck = false; # no tests
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CMB";
|
|
repo = "cligh";
|
|
rev = "v${version}";
|
|
sha256 = "0d1fd78rzl2n75xpmy1gnxh1shvcs4qm0j4qqszqvfriwkg2flxn";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyxdg pygithub ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://the-brannons.com/software/cligh.html";
|
|
description = "A simple command-line interface to the facilities of Github";
|
|
mainProgram = "cligh";
|
|
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 ];
|
|
};
|
|
}
|