dex-oidc: 2.4.1 -> 2.16.0

repo organisation changed from coreos to dexidp
This commit is contained in:
nyanloutre 2019-04-26 00:02:43 +02:00
parent dfd8f84aef
commit bd488d9814
No known key found for this signature in database
GPG key ID: 194A92D1103ACB2A

View file

@ -1,17 +1,16 @@
{ lib, buildGoPackage, fetchFromGitHub }: { lib, buildGoPackage, fetchFromGitHub }:
let version = "2.4.1"; in
buildGoPackage rec { buildGoPackage rec {
name = "dex-${version}"; pname = "dex";
version = "2.16.0";
goPackagePath = "github.com/coreos/dex"; goPackagePath = "github.com/dexidp/dex";
src = fetchFromGitHub { src = fetchFromGitHub {
rev = "v${version}"; rev = "v${version}";
owner = "coreos"; owner = "dexidp";
repo = "dex"; repo = pname;
sha256 = "11qpn3wh74mq16xgl9l50n2v02ffqcd14xccf77j5il04xr764nx"; sha256 = "0w8nl7inqp4grbaq320dgynmznbrln8vihd799dwb2cx86laxsi1";
}; };
subPackages = [ subPackages = [
@ -25,7 +24,7 @@ buildGoPackage rec {
meta = { meta = {
description = "OpenID Connect and OAuth2 identity provider with pluggable connectors"; description = "OpenID Connect and OAuth2 identity provider with pluggable connectors";
license = lib.licenses.asl20; license = lib.licenses.asl20;
homepage = https://github.com/coreos/dex; homepage = https://github.com/dexidp/dex;
maintainers = with lib.maintainers; [benley]; maintainers = with lib.maintainers; [benley];
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
}; };