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


buildGoPackage {
  pname = "yaml2json";
  version = "unstable-2017-05-03";
  goPackagePath = "github.com/bronze1man/yaml2json";

  goDeps = ./deps.nix;

  src = fetchFromGitHub {
    rev = "ee8196e587313e98831c040c26262693d48c1a0c";
    owner = "bronze1man";
    repo = "yaml2json";
    sha256 = "16a2sqzbam5adbhfvilnpdabzwncs7kgpr0cn4gp09h2imzsprzw";
  };

  meta = with stdenv.lib; {
    homepage = https://github.com/bronze1man/yaml2json;
    description = "Convert yaml to json";
    license = with licenses; [ mit ];
    maintainers = [ maintainers.adisbladis ];
  };
}