initial commit
This commit is contained in:
commit
48c901fad6
6 changed files with 2125 additions and 0 deletions
15
shell.nix
Normal file
15
shell.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
pkgs ? import <nixpkgs> {},
|
||||
lib ? pkgs.lib,
|
||||
}:
|
||||
pkgs.mkShell rec {
|
||||
buildInputs = with pkgs; [
|
||||
libxkbcommon
|
||||
wayland
|
||||
pkg-config
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${lib.makeLibraryPath buildInputs}";
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue