initial commit

This commit is contained in:
raf 2025-02-19 00:56:00 +03:00
commit 48c901fad6
No known key found for this signature in database
GPG key ID: EED98D11B85A2819
6 changed files with 2125 additions and 0 deletions

15
shell.nix Normal file
View 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}";
'';
}