dex: init at 2.4.1
There is already another thing called "dex" that manipulates .desktop files, so I called this one "dex-oidc" in all-packages.nix.
This commit is contained in:
parent
53835c93cb
commit
d007428621
32
pkgs/servers/dex/default.nix
Normal file
32
pkgs/servers/dex/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
|
let version = "2.4.1"; in
|
||||||
|
|
||||||
|
buildGoPackage rec {
|
||||||
|
name = "dex-${version}";
|
||||||
|
|
||||||
|
goPackagePath = "github.com/coreos/dex";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
rev = "v${version}";
|
||||||
|
owner = "coreos";
|
||||||
|
repo = "dex";
|
||||||
|
sha256 = "11qpn3wh74mq16xgl9l50n2v02ffqcd14xccf77j5il04xr764nx";
|
||||||
|
};
|
||||||
|
|
||||||
|
subPackages = [
|
||||||
|
"cmd/dex"
|
||||||
|
];
|
||||||
|
|
||||||
|
buildFlagsArray = [
|
||||||
|
"-ldflags=-w -X ${goPackagePath}/version.Version=${src.rev}"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "OpenID Connect and OAuth2 identity provider with pluggable connectors";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
homepage = https://github.com/coreos/dex;
|
||||||
|
maintainers = with lib.maintainers; [benley];
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -10871,6 +10871,8 @@ with pkgs;
|
|||||||
|
|
||||||
couchpotato = callPackage ../servers/couchpotato {};
|
couchpotato = callPackage ../servers/couchpotato {};
|
||||||
|
|
||||||
|
dex-oidc = callPackage ../servers/dex { };
|
||||||
|
|
||||||
dico = callPackage ../servers/dico { };
|
dico = callPackage ../servers/dico { };
|
||||||
|
|
||||||
dict = callPackage ../servers/dict {
|
dict = callPackage ../servers/dict {
|
||||||
|
Loading…
Reference in New Issue
Block a user