2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2018-02-09 08:41:49 +00:00
|
|
|
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
buildGoPackage {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "yaml2json";
|
2018-02-09 08:41:49 +00:00
|
|
|
version = "unstable-2017-05-03";
|
|
|
|
goPackagePath = "github.com/bronze1man/yaml2json";
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "ee8196e587313e98831c040c26262693d48c1a0c";
|
|
|
|
owner = "bronze1man";
|
|
|
|
repo = "yaml2json";
|
|
|
|
sha256 = "16a2sqzbam5adbhfvilnpdabzwncs7kgpr0cn4gp09h2imzsprzw";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/bronze1man/yaml2json";
|
2018-02-09 08:41:49 +00:00
|
|
|
description = "Convert yaml to json";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = [ maintainers.adisbladis ];
|
|
|
|
};
|
|
|
|
}
|