nix and compile features
This commit is contained in:
parent
db144d3bd2
commit
153ddb8419
4 changed files with 2136 additions and 1 deletions
23
shell.nix
Executable file
23
shell.nix
Executable file
|
@ -0,0 +1,23 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
pkg-config
|
||||
xorg.libX11.dev
|
||||
xorg.libXft
|
||||
xorg.libXinerama
|
||||
xorg.libXi
|
||||
xorg.libXtst
|
||||
xorg.libX11
|
||||
xorg.libXcursor
|
||||
xorg.libXrandr
|
||||
libxkbcommon
|
||||
libxkbcommon.dev
|
||||
xorg.libxcb
|
||||
alsa-lib
|
||||
libudev-zero
|
||||
openssl
|
||||
];
|
||||
shellHook = ''
|
||||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${pkgs.libxkbcommon}/lib
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue