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:
Benjamin Staffin 2017-06-03 17:34:31 -04:00
parent 53835c93cb
commit d007428621
No known key found for this signature in database
GPG key ID: A490C0134E09AF4A
2 changed files with 34 additions and 0 deletions

View 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;
};
}

View file

@ -10871,6 +10871,8 @@ with pkgs;
couchpotato = callPackage ../servers/couchpotato {};
dex-oidc = callPackage ../servers/dex { };
dico = callPackage ../servers/dico { };
dict = callPackage ../servers/dict {