This commit is contained in:
2025-11-13 00:04:03 +01:00
commit 830075116a
9 changed files with 5774 additions and 0 deletions

21
default.nix Normal file
View File

@@ -0,0 +1,21 @@
{
# lib,
rustPlatform,
packageName,
pkg-config,
wayland,
alsa-lib,
libudev-zero,
}:
rustPlatform.buildRustPackage {
name = "${packageName}";
src = ./.;
buildInputs = [
wayland
alsa-lib
libudev-zero
];
nativeBuildInputs = [ pkg-config ];
# cargoHash = lib.fakeHash;
cargoHash = "sha256-ZJ7DODvIiupVlmBUhQhXEVlNeDT0S62z/5Qln77JpQc=";
}