aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/yj/default.nix
blob: 94237abf89b7fa038b451b316c5355f7c1b496a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  pname = "yj";
  version = "4.0.0";
  rev = "d9a48607cc5c812e8cf4abccc8ad26f37ab51558";

  goPackagePath = "github.com/sclevine/yj";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/sclevine/yj";
    sha256 = "04irphzs6hp9hvyski29ad29ga1kis3h8bw7jqvmy2c2rkrrsh7x";
  };

  goDeps = ./deps.nix;

  meta = with stdenv.lib; {
    description = ''Convert YAML <=> TOML <=> JSON <=> HCL'';
    license = licenses.asl20;
    maintainers = with maintainers; [ Profpatsch ];
    downloadPage = "https://github.com/sclevine/yj";
    updateWalker = true;
    inherit version;
  };
}