nixpkgs/pkgs/servers/dex/default.nix

37 lines
827 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "dex";
2021-09-19 10:13:11 +00:00
version = "2.30.0";
src = fetchFromGitHub {
owner = "dexidp";
repo = pname;
2019-07-10 18:18:42 +00:00
rev = "v${version}";
2021-09-19 10:13:11 +00:00
sha256 = "sha256-Z/X9Db57eNUJdjzLCJNIW3lCRw05JP2TQ43PqKO6CiI=";
};
2021-09-19 10:13:11 +00:00
vendorSha256 = "sha256-ksN/1boBQVhevlDseVZsGUWL+Bwy4AMgGNdOPgsNNxk=";
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
'';
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;
maintainers = with maintainers; [ benley ];
platforms = platforms.unix;
};
}