gojsontoyaml: init at unstable-2020-06-02

Signed-off-by: Bryan A. S <bryanasdev000@gmail.com>
This commit is contained in:
Bryan A. S 2020-11-28 21:13:54 -03:00
parent e00752079e
commit 6493ef3de3
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gojsontoyaml";
version = "unstable-2020-06-02";
src = fetchFromGitHub {
owner = "brancz";
repo = "gojsontoyaml";
rev = "3697ded27e8cfea8e547eb082ebfbde36f1b5ee6";
sha256 = "07sisadpfnzbylzirs5ski8wl9fl18dm7xhbv8imw6ksxq4v467a";
};
vendorSha256 = null;
meta = with stdenv.lib; {
description = "Simply tool to convert json to yaml written in Go";
homepage = "https://github.com/brancz/gojsontoyaml";
license = licenses.mit;
maintainers = [ maintainers.bryanasdev000 ];
};
}

View File

@ -1186,6 +1186,8 @@ in
goimapnotify = callPackage ../tools/networking/goimapnotify { };
gojsontoyaml = callPackage ../development/tools/gojsontoyaml { };
gomatrix = callPackage ../applications/misc/gomatrix { };
gopacked = callPackage ../applications/misc/gopacked { };