2022-12-17 10:02:37 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2021-12-21 02:18:32 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
buildGoModule rec {
|
2021-12-21 02:18:32 +00:00
|
|
|
pname = "hjson-go";
|
2022-12-17 10:02:37 +00:00
|
|
|
version = "4.3.0";
|
2021-12-21 02:18:32 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hjson";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-12-17 10:02:37 +00:00
|
|
|
hash = "sha256-WR6wLa/Za5MgcH1enHG/74uq/7PdaY/OzvJdgMgDFIk=";
|
2021-12-21 02:18:32 +00:00
|
|
|
};
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
vendorSha256 = null;
|
2021-12-21 02:18:32 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
];
|
2022-04-27 09:35:20 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Utility to convert JSON to and from HJSON";
|
|
|
|
homepage = "https://hjson.github.io/";
|
2022-12-17 10:02:37 +00:00
|
|
|
changelog = "https://github.com/hjson/hjson-go/releases/tag/v${version}";
|
2022-04-27 09:35:20 +00:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
|
|
|
license = licenses.mit;
|
|
|
|
mainProgram = "hjson-cli";
|
|
|
|
};
|
2021-12-21 02:18:32 +00:00
|
|
|
}
|