2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-06-21 17:30:57 +02:00
|
|
|
|
2020-12-23 18:23:09 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "yj";
|
2020-12-23 18:23:09 +01:00
|
|
|
version = "5.0.0";
|
2019-06-21 17:30:57 +02:00
|
|
|
|
2020-12-23 18:23:09 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sclevine";
|
|
|
|
repo = "yj";
|
|
|
|
rev = "c4c13b7641389c76ea028b48091f851f3efb6376";
|
|
|
|
sha256 = "0bnb88wfm2vagh4yb1h9xhp3045ga0b6a77n3j2z5b4mvwshx5dr";
|
2019-06-21 17:30:57 +02:00
|
|
|
};
|
|
|
|
|
2020-12-23 18:23:09 +01:00
|
|
|
vendorSha256 = "0y0n9fsb85qlpf9slwsxzarmfi98asa4x04qp2r8pagl28l0i8wv";
|
|
|
|
|
2021-08-26 08:45:51 +02:00
|
|
|
ldflags = [ "-s" "-w" "-X main.Version=${version}" ];
|
2019-06-21 17:30:57 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2021-01-24 10:19:10 +01:00
|
|
|
description = "Convert YAML <=> TOML <=> JSON <=> HCL";
|
2019-06-21 17:30:57 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ Profpatsch ];
|
2020-12-23 18:23:09 +01:00
|
|
|
homepage = "https://github.com/sclevine/yj";
|
2019-06-21 17:30:57 +02:00
|
|
|
};
|
|
|
|
}
|