3
0
Fork 0
forked from mirrors/nixpkgs

oh: add missing description & homepage

This commit is contained in:
Christine Koppelt 2019-11-10 07:59:05 +01:00
parent 438a0cd40b
commit 92d66a9d95

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