This commit is contained in:
nora 2025-09-07 02:05:53 +02:00
parent fbce93b927
commit 09f26d6d40
3 changed files with 20 additions and 5 deletions

17
default.nix Normal file
View file

@ -0,0 +1,17 @@
{ pkgs ? import <nixpkgs> { } }: pkgs.rustPlatform.buildRustPackage {
name = "clippyboard";
src = pkgs.lib.cleanSource ./.;
buildInputs = with pkgs; [
libGL
libxkbcommon
wayland
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
];
cargoLock.lockFile = ./Cargo.lock;
}