aboutsummaryrefslogtreecommitdiff
path: root/pkgs/shells/oh
diff options
context:
space:
mode:
authorChristine Koppelt <cko@users.noreply.github.com>2019-11-10 07:59:05 +0100
committerChristine Koppelt <cko@users.noreply.github.com>2019-11-10 07:59:05 +0100
commit92d66a9d951957efb17e6ed9b994a634df7645a7 (patch)
tree667650f3db1b3873063a0db9ef24e8437a450748 /pkgs/shells/oh
parent438a0cd40b2e40c0b85f6ea2eafaca094bd16bae (diff)
oh: add missing description & homepage
Diffstat (limited to 'pkgs/shells/oh')
-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 09a54c8a3b88..3ae8a7c600aa 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;
+ };
}