summary refs log tree commit diff
path: root/pkgs/development/tools/gojsontoyaml/default.nix
blob: 659532e04e0178aa26cb8682555c9be67a974469 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "gojsontoyaml";
  version = "unstable-2020-12-16";

  src = fetchFromGitHub {
    owner = "brancz";
    repo = "gojsontoyaml";
    rev = "202f76bf8c1f8fb74941a845b349941064603185";
    sha256 = "sha256-N49iHQh28nAZBGJnLKG/aZPdn5fwPKQpdrXXtX28yss=";
  };

  vendorSha256 = null;

  meta = with lib; {
    description = "Simply tool to convert json to yaml written in Go";
    homepage = "https://github.com/brancz/gojsontoyaml";
    license = licenses.mit;
    maintainers = [ maintainers.bryanasdev000 ];
  };
}