Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gojsontoyaml: init at unstable-2020-06-02 #102129

Merged
merged 1 commit into from Dec 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 22 additions & 0 deletions pkgs/development/tools/gojsontoyaml/default.nix
@@ -0,0 +1,22 @@
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "gojsontoyaml";
version = "unstable-2020-06-02";
bryanasdev000 marked this conversation as resolved.
Show resolved Hide resolved

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down