diff options
author | Vincent Ambo <mail@tazj.in> | 2021-06-14T21·17+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-06-14T21·47+0000 |
commit | 1a4465d7d3726e61cf95c6455330f779d760f5db (patch) | |
tree | 9a225a5763a5309df6fa302c20ed0d75f53d16aa /third_party/apereo-cas | |
parent | 417d1c8a49f9d219394512f1d667ef8710f7876e (diff) |
chore(3p/nixpkgs): Bump unstable channel to 2021-06-14 r/2665
Included fixes: * 3p/apereo-cas: Don't use stdenv.lib * grfn/system: Bump Linux to 5.12 (5.11 is gone) Change-Id: Ie32d476e659ba482418d4035333c2797a7dbd106 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3211 Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party/apereo-cas')
-rw-r--r-- | third_party/apereo-cas/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/apereo-cas/default.nix b/third_party/apereo-cas/default.nix index e9930774ecba..bda607c07287 100644 --- a/third_party/apereo-cas/default.nix +++ b/third_party/apereo-cas/default.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, lib, ... }: let name = "apereo-cas-${version}"; @@ -8,7 +8,7 @@ let jdk = pkgs.jdk11; gradle = pkgs.gradle_6; - meta = with pkgs.stdenvNoCC.lib; { + meta = with lib; { homepage = "https://www.apereo.org/projects/cas"; description = "CAS provides enterprise single sign-on for the Web"; platforms = platforms.linux; |