mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
10 lines
255 B
Nix
10 lines
255 B
Nix
(final: super: rec {
|
|
st = (super.st.override {
|
|
extraLibs = with super; [ xorg.libXcursor harfbuzz ];
|
|
}).overrideAttrs (oldAttrs: rec {
|
|
src = ./st;
|
|
});
|
|
dwm = (super.dwm.override { }).overrideAttrs (oldAttrs: rec {
|
|
src = ./dwm;
|
|
});
|
|
})
|