hjson-go: add changelog to meta
This commit is contained in:
parent
713b5c27ab
commit
16875b3e7b
1 changed files with 10 additions and 3 deletions
|
@ -1,4 +1,7 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "hjson-go";
|
||||
|
@ -8,16 +11,20 @@ buildGoModule rec {
|
|||
owner = "hjson";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-WR6wLa/Za5MgcH1enHG/74uq/7PdaY/OzvJdgMgDFIk=";
|
||||
hash = "sha256-WR6wLa/Za5MgcH1enHG/74uq/7PdaY/OzvJdgMgDFIk=";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Utility to convert JSON to and from HJSON";
|
||||
homepage = "https://hjson.github.io/";
|
||||
changelog = "https://github.com/hjson/hjson-go/releases/tag/v${version}";
|
||||
maintainers = with maintainers; [ ehmry ];
|
||||
license = licenses.mit;
|
||||
mainProgram = "hjson-cli";
|
||||
|
|
Loading…
Reference in a new issue