vouch-proxy: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-01-23 21:03:25 +01:00 committed by Kerstin
parent c4e118444c
commit 1a711794d5

@ -1,4 +1,7 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "vouch-proxy";
@ -7,14 +10,15 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "vouch";
repo = "vouch-proxy";
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-q4tylXW219jzWrdzOQxewRh1advYEouEKiNJvvnIp9U=";
};
vendorHash = "sha256-IUjIGht/oQiWKHfbW7nJaybKpKs179mOkpLIwAb8/hk=";
ldflags = [
"-s" "-w"
"-s"
"-w"
"-X main.version=${version}"
];
@ -25,8 +29,9 @@ buildGoModule rec {
meta = with lib; {
homepage = "https://github.com/vouch/vouch-proxy";
description = "An SSO and OAuth / OIDC login solution for NGINX using the auth_request module";
changelog = "https://github.com/vouch/vouch-proxy/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ leona erictapen ];
platforms = lib.platforms.linux;
platforms = platforms.linux;
};
}