oh: add missing description & homepage

gstqt5
Christine Koppelt 2019-11-10 07:59:05 +01:00
parent 438a0cd40b
commit 92d66a9d95
1 changed files with 7 additions and 1 deletions

View File

@ -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;
};
}