Merge pull request #126139 from NixOS/backport-124776-to-release-21.05

This commit is contained in:
Artturi 2021-08-06 17:01:43 +03:00 committed by GitHub
commit 9582db8df4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
tags.
'';
license = licenses.mit;
maintainers = with maintainers; [ viric ];
maintainers = with maintainers; [ viric neonfuz ];
platforms = platforms.all;
};
}

View File

@ -23126,7 +23126,11 @@ in
dwl = callPackage ../applications/window-managers/dwl { };
dwm = callPackage ../applications/window-managers/dwm { };
dwm = callPackage ../applications/window-managers/dwm {
# dwm is configured entirely through source modification. Allow users to
# specify patches through nixpkgs.config.dwm.patches
patches = config.dwm.patches or [];
};
dwmblocks = callPackage ../applications/misc/dwmblocks { };