This commit is contained in:
nora 2025-12-28 18:34:25 +01:00
parent 6a8eabf9f2
commit ce0def46fd

13
default.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> { } }: pkgs.rustPlatform.buildRustPackage {
pname = "wallpapersc";
version = "0.1.0";
src = pkgs.lib.cleanSource ./.;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = with pkgs; [
wayland
libxkbcommon
];
}