mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
finished configuring st
This commit is contained in:
parent
f353281d6b
commit
f543cd8e23
31 changed files with 10156 additions and 11 deletions
25
suckless/st/shell.nix
Normal file
25
suckless/st/shell.nix
Normal 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)" ];
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue