nixpkgs/pkgs/development/tools/github/cligh/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

33 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, pythonPackages }:
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 ];
};
}