finished configuring st

This commit is contained in:
ISnortPennies 2022-09-30 14:45:37 -04:00
parent f353281d6b
commit f543cd8e23
31 changed files with 10156 additions and 11 deletions

25
suckless/st/shell.nix Normal file
View file

@ -0,0 +1,25 @@
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)" ];
}