summary refs log tree commit diff
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
parent438a0cd40b2e40c0b85f6ea2eafaca094bd16bae (diff)
downloadnixpkgs-92d66a9d951957efb17e6ed9b994a634df7645a7.tar
nixpkgs-92d66a9d951957efb17e6ed9b994a634df7645a7.tar.gz
nixpkgs-92d66a9d951957efb17e6ed9b994a634df7645a7.tar.bz2
nixpkgs-92d66a9d951957efb17e6ed9b994a634df7645a7.tar.lz
nixpkgs-92d66a9d951957efb17e6ed9b994a634df7645a7.tar.xz
nixpkgs-92d66a9d951957efb17e6ed9b994a634df7645a7.tar.zst
nixpkgs-92d66a9d951957efb17e6ed9b994a634df7645a7.zip
oh: add missing description & homepage
-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 09a54c8a3b8..3ae8a7c600a 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;
+  };
 }