nixpkgs/overlays/dmenu/default.nix
Daniel Siepmann ff2fc14243
Streamline patches via overlay
Do not replace patches, but only add custom patches.
2022-08-30 10:55:38 +02:00

8 lines
165 B
Nix

self: super: {
dmenu = super.dmenu.overrideAttrs(old: {
patches = (if old.patches == null then [] else old.patches) ++ [
./settings.patch
];
});
}