nixpkgs/overlays/dmenu/default.nix
Daniel Siepmann e909cf1178
Streamline overlay overrides
st and dmenu are suckless tools where the function already accepts
patches.

The others should use overrideAttrs to extend existing patches.
2022-11-10 09:36:35 +01:00

8 lines
101 B
Nix

self: super: {
dmenu = super.dmenu.override {
patches = [
./settings.patch
];
};
}