heimdall-proxy: init at 0.15.5 (#385501)

This commit is contained in:
Pol Dellaiera
2025-03-01 11:28:03 +01:00
committed by GitHub
2 changed files with 49 additions and 0 deletions
+6
View File
@@ -1008,6 +1008,12 @@
githubId = 217050;
name = "Albert Chae";
};
albertilagan = {
email = "me@albertilagan.dev";
github = "albertilagan";
githubId = 22500561;
name = "Albert Ilagan";
};
albertodvp = {
email = "alberto.fanton@protonmail.com";
github = "albertodvp";
@@ -0,0 +1,43 @@
{
fetchFromGitHub,
buildGoModule,
lib,
}:
let
version = "0.15.5";
in
buildGoModule {
pname = "heimdall-proxy";
inherit version;
src = fetchFromGitHub {
owner = "dadrus";
repo = "heimdall";
tag = "v${version}";
hash = "sha256-tVWdxhdHr8HvestvGbyfstSagzwIB35Uub+9X64tTAA=";
};
vendorHash = "sha256-DkqM/zkatYskXQl+MOWJX3PkZGHCqyXZ0v/EEJUS3cA=";
tags = [ "sqlite" ];
subPackages = [ "." ];
env.CGO_ENABLED = 0;
# Pass versioning information via ldflags
ldflags = [
"-s"
"-w"
"-X github.com/dadrus/heimdall/version.Version=${version}"
];
meta = {
description = "A cloud native Identity Aware Proxy and Access Control Decision service";
homepage = "https://dadrus.github.io/heimdall";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ albertilagan ];
mainProgram = "heimdall-proxy";
};
}