nixpkgs/pkgs/servers/dex/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
908 B
Nix
Raw Normal View History

2021-09-19 23:43:54 +00:00
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
buildGoModule rec {
pname = "dex";
2023-04-02 08:59:20 +00:00
version = "2.36.0";
src = fetchFromGitHub {
owner = "dexidp";
repo = pname;
2019-07-10 18:18:42 +00:00
rev = "v${version}";
2023-04-02 08:59:20 +00:00
sha256 = "sha256-EIkK+X08FJKTFU4V19cGSH1yGesUfS7AibQ3zGUFyWI=";
};
2023-04-02 08:59:20 +00:00
vendorHash = "sha256-Rsz7UnBlZdPRTrq3nfFaSVwok8wLDtd6aT1sEK+++vg=";
2019-07-10 18:18:42 +00:00
subPackages = [
"cmd/dex"
];
2021-08-26 06:45:51 +00:00
ldflags = [
"-w" "-s" "-X github.com/dexidp/dex/version.Version=${src.rev}"
];
2019-04-25 22:36:27 +00:00
postInstall = ''
mkdir -p $out/share
cp -r $src/web $out/share/web
2019-04-25 22:36:27 +00:00
'';
2021-09-19 23:43:54 +00:00
passthru.tests = { inherit (nixosTests) dex-oidc; };
2019-07-10 18:18:42 +00:00
meta = with lib; {
description = "OpenID Connect and OAuth2 identity provider with pluggable connectors";
2019-07-10 18:18:42 +00:00
homepage = "https://github.com/dexidp/dex";
license = licenses.asl20;
2022-05-26 19:30:50 +00:00
maintainers = with maintainers; [ benley techknowlogick ];
2019-07-10 18:18:42 +00:00
platforms = platforms.unix;
};
}