about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-11-13 00:34:31 +0100
committerGitHub <noreply@github.com>2019-11-13 00:34:31 +0100
commita6220c33845a8c0f93f52eb0fc4fd9ea6826d993 (patch)
tree33fe17245690b33b0cab985f454bb335777f15de /pkgs/shells
parent7fb85457cd0a9799942e82ccce1250e31b3db430 (diff)
parente2ef3521cad140e9a88b25a793666151da9217c4 (diff)
Merge pull request #73072 from cko/missing_descriptions
treewide: add missing descriptions & homepages
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/oh/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/shells/oh/default.nix b/pkgs/shells/oh/default.nix
index 09a54c8a3b88f..3ae8a7c600aac 100644
--- a/pkgs/shells/oh/default.nix
+++ b/pkgs/shells/oh/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildGoPackage, fetchgit }:
+{ stdenv, buildGoPackage, fetchgit, lib }:
 
 buildGoPackage rec {
   pname = "oh";
@@ -14,4 +14,10 @@ buildGoPackage rec {
   };
 
   goDeps = ./deps.nix;
+
+  meta = with lib;{
+    homepage = "https://github.com/michaelmacinnis/oh";
+    description = "A Unix shell";
+    license = stdenv.lib.licenses.mit;
+  };
 }