mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
git-hub: minor clean-up
Move meta out of the way; inherit the GitHub home page from src; `with platforms; linux` -> `platforms.linux`.
This commit is contained in:
parent
4a92863fd5
commit
910dfd53bd
@ -1,7 +1,7 @@
|
||||
{ stdenv, fetchFromGitHub, docutils, python }:
|
||||
|
||||
let version = "0.9.0"; in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
name = "git-hub-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
@ -11,20 +11,6 @@ stdenv.mkDerivation {
|
||||
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 ];
|
||||
|
||||
@ -41,4 +27,18 @@ stdenv.mkDerivation {
|
||||
# Remove inert ftdetect vim plugin and a README that's a man page subset:
|
||||
rm -r $out/share/{doc,vim}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit version;
|
||||
inherit (src.meta) homepage;
|
||||
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.
|
||||
'';
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user