mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
Merge pull request #102129 from bryanasdev000/package-gojsontoyaml
gojsontoyaml: init at unstable-2020-06-02
This commit is contained in:
commit
01b840b4ca
22
pkgs/development/tools/gojsontoyaml/default.nix
Normal file
22
pkgs/development/tools/gojsontoyaml/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1228,6 +1228,8 @@ in
|
|||||||
|
|
||||||
goimapnotify = callPackage ../tools/networking/goimapnotify { };
|
goimapnotify = callPackage ../tools/networking/goimapnotify { };
|
||||||
|
|
||||||
|
gojsontoyaml = callPackage ../development/tools/gojsontoyaml { };
|
||||||
|
|
||||||
gomatrix = callPackage ../applications/misc/gomatrix { };
|
gomatrix = callPackage ../applications/misc/gomatrix { };
|
||||||
|
|
||||||
gopacked = callPackage ../applications/misc/gopacked { };
|
gopacked = callPackage ../applications/misc/gopacked { };
|
||||||
|
Loading…
Reference in New Issue
Block a user