chore: run deadnix

This commit is contained in:
oddlama 2023-09-04 22:01:47 +02:00
parent 0daf5651df
commit 562d1dffb3
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
35 changed files with 21 additions and 110 deletions

View file

@ -3,7 +3,6 @@ self: super: let
(self.lib)
escapeShellArg
concatMapStrings
flatten
flip
;

View file

@ -1,9 +1,9 @@
[
(import ./caddy.nix)
(import ./oauth2-proxy)
(self: super: {
(_self: super: {
kanidm-secret-manipulator = super.callPackage ./kanidm-secret-manipulator.nix {};
kanidm = super.kanidm.overrideAttrs (finalAttrs: previousAttrs: {
kanidm = super.kanidm.overrideAttrs (_finalAttrs: _previousAttrs: {
patches = [
(super.fetchpatch {
name = "group-list-json-output.patch";

View file

@ -1,4 +1,4 @@
self: super: {
_self: super: {
oauth2-proxy = super.oauth2-proxy.overrideAttrs (_: {
patches = [./0001-scopes-as-groups.patch];
});