diff options
| author | Christine Koppelt <cko@users.noreply.github.com> | 2019-11-10 07:59:05 +0100 |
|---|---|---|
| committer | Christine Koppelt <cko@users.noreply.github.com> | 2019-11-10 07:59:05 +0100 |
| commit | 92d66a9d951957efb17e6ed9b994a634df7645a7 (patch) | |
| tree | 667650f3db1b3873063a0db9ef24e8437a450748 | |
| parent | Merge pull request #73032 from marijanp/improvement-test-driver-py (diff) | |
| download | nixpkgs-92d66a9d951957efb17e6ed9b994a634df7645a7.tar.gz | |
oh: add missing description & homepage
| -rw-r--r-- | pkgs/shells/oh/default.nix | 8 |
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; + }; } |
