summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/git-hub
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-10-01 20:43:43 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-10-02 05:34:34 +0200
commit910dfd53bdff391b7b531b6c6752ce628b94bcf7 (patch)
tree6b882a2dab6440a1be84d8189581f21f8045855e /pkgs/applications/version-management/git-and-tools/git-hub
parent4a92863fd55de5a1b73c3ba68c1dc1eb66dc841a (diff)
downloadnixlib-910dfd53bdff391b7b531b6c6752ce628b94bcf7.tar
nixlib-910dfd53bdff391b7b531b6c6752ce628b94bcf7.tar.gz
nixlib-910dfd53bdff391b7b531b6c6752ce628b94bcf7.tar.bz2
nixlib-910dfd53bdff391b7b531b6c6752ce628b94bcf7.tar.lz
nixlib-910dfd53bdff391b7b531b6c6752ce628b94bcf7.tar.xz
nixlib-910dfd53bdff391b7b531b6c6752ce628b94bcf7.tar.zst
nixlib-910dfd53bdff391b7b531b6c6752ce628b94bcf7.zip
git-hub: minor clean-up
Move meta out of the way; inherit the GitHub home page from src;
`with platforms; linux` -> `platforms.linux`.
Diffstat (limited to 'pkgs/applications/version-management/git-and-tools/git-hub')
-rw-r--r--pkgs/applications/version-management/git-and-tools/git-hub/default.nix30
1 files changed, 15 insertions, 15 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/git-hub/default.nix b/pkgs/applications/version-management/git-and-tools/git-hub/default.nix
index e47d2569b109..e657215f2cd5 100644
--- a/pkgs/applications/version-management/git-and-tools/git-hub/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git-hub/default.nix
@@ -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 ];
+  };
 }