initial commit

This commit is contained in:
Veneficium 2025-11-06 23:48:28 +01:00
commit 82ae18ce43
7 changed files with 2836 additions and 0 deletions

33
package.nix Normal file
View file

@ -0,0 +1,33 @@
{
lib,
rustPlatform,
pkg-config,
libxkbcommon,
wayland,
vulkan-loader,
}:
rustPlatform.buildRustPackage {
pname = "image_viewer";
version = "0.0.1";
src = lib.fileset.toSource {
root = ./.;
fileset = ./.;
};
strictDeps = true;
cargoDeps = rustPlatform.importCargoLock { lockFile = ./Cargo.lock; };
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libxkbcommon
wayland
vulkan-loader
];
}