nix/shared/st.nix
2025-06-03 21:39:19 +02:00

12 lines
354 B
Nix

{ pkgs, ...}:
{
environment.systemPackages = with pkgs; [
(st.overrideAttrs (oldAttrs: rec {
src = builtins.fetchGit {
url = "https://github.com/fwastring/st";
rev = "2c6e38d2e735116e902962d03e8d7c88db8094bd";
};
buildInputs = oldAttrs.buildInputs ++ [ xorg.libX11.dev xorg.libXft imlib2 xorg.libXinerama pkg-config];
}))
];
}