auth0-cli: add changelog to meta
This commit is contained in:
parent
adccc87311
commit
2ce07e4078
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub }:
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "auth0-cli";
|
pname = "auth0-cli";
|
||||||
|
@ -7,7 +10,7 @@ buildGoModule rec {
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "auth0";
|
owner = "auth0";
|
||||||
repo = "auth0-cli";
|
repo = "auth0-cli";
|
||||||
rev = "v${version}";
|
rev = "tags/release/v${version}";
|
||||||
hash = "sha256-FotjdMbQXDwkURSeye86sIFN60V//UlF7kZrwfkvTGY=";
|
hash = "sha256-FotjdMbQXDwkURSeye86sIFN60V//UlF7kZrwfkvTGY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -31,6 +34,7 @@ buildGoModule rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Supercharge your developer workflow";
|
description = "Supercharge your developer workflow";
|
||||||
homepage = "https://auth0.github.io/auth0-cli";
|
homepage = "https://auth0.github.io/auth0-cli";
|
||||||
|
changelog = "https://github.com/auth0/auth0-cli/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ matthewcroughan ];
|
maintainers = with maintainers; [ matthewcroughan ];
|
||||||
mainProgram = "auth0";
|
mainProgram = "auth0";
|
||||||
|
|
Loading…
Reference in a new issue