2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-11-29 00:13:54 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gojsontoyaml";
|
2021-12-15 14:39:04 +00:00
|
|
|
version = "0.1.0";
|
2020-11-29 00:13:54 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "brancz";
|
|
|
|
repo = "gojsontoyaml";
|
2021-12-15 14:39:04 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-ebxz2uTH7XwD3j6JnsfET6aCGYjvsCjow/sU9pagg50=";
|
2020-11-29 00:13:54 +00:00
|
|
|
};
|
|
|
|
|
2023-09-21 17:11:11 +00:00
|
|
|
vendorHash = null;
|
2020-11-29 00:13:54 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-11-29 00:13:54 +00:00
|
|
|
description = "Simply tool to convert json to yaml written in Go";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "gojsontoyaml";
|
2020-11-29 00:13:54 +00:00
|
|
|
homepage = "https://github.com/brancz/gojsontoyaml";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.bryanasdev000 ];
|
|
|
|
};
|
|
|
|
}
|