3
0
Fork 0
forked from mirrors/nixpkgs

json2hcl: fix meta

This commit is contained in:
Matthew Bauer 2018-03-14 15:31:40 -05:00
parent 7272190333
commit ba4356f585

View file

@ -1,4 +1,4 @@
{ stdenv, buildGoPackage, fetchFromGitHub }: { stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec { buildGoPackage rec {
pname = "json2hcl"; pname = "json2hcl";
@ -16,9 +16,10 @@ buildGoPackage rec {
goPackagePath = "github.com/${owner}/${pname}"; goPackagePath = "github.com/${owner}/${pname}";
goDeps = ./deps.nix; goDeps = ./deps.nix;
meta = with stdenv.lib; { meta = with lib; {
description = "Convert JSON to HCL, and vice versa"; description = "Convert JSON to HCL, and vice versa";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = [ maintainers.matthewbauer ]; maintainers = [ maintainers.matthewbauer ];
platforms = platforms.unix;
}; };
} }