39 lines
895 B
Nix
39 lines
895 B
Nix
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "dex";
|
|
version = "2.31.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dexidp";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-tr7rs2ymHpMEtNwvLhgEzp94wO/k/oY814NS0N4ONsg=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-l+/qjYokg5zHAFkKxtkdX49HqVW6kfz7OHqs6SRKDYg=";
|
|
|
|
subPackages = [
|
|
"cmd/dex"
|
|
];
|
|
|
|
ldflags = [
|
|
"-w" "-s" "-X github.com/dexidp/dex/version.Version=${src.rev}"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share
|
|
cp -r $src/web $out/share/web
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) dex-oidc; };
|
|
|
|
meta = with lib; {
|
|
description = "OpenID Connect and OAuth2 identity provider with pluggable connectors";
|
|
homepage = "https://github.com/dexidp/dex";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ benley ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|