nixos/suckless/st/shell.nix
2022-09-30 14:45:37 -04:00

25 lines
363 B
Nix

let
pkgs = import <nixpkgs> {};
in
with pkgs;
mkShell rec {
name = "build-st";
buildInputs = with pkgs; [
xorg.libX11
xorg.libXft
xorg.libXcursor
];
nativeBuildInputs = [
pkg-config
ncurses
fontconfig
freetype
];
preInstall = ''
export TERMINFO=$out/share/terminfo
'';
installFlags = [ "PREFIX=$(out)" ];
}