mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
9 lines
244 B
Nix
9 lines
244 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;
|
|
});
|
|
})
|