2024-03-19 15:30:38 +07:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, nix-gitignore
|
|
|
|
, pkg-config
|
|
|
|
, alsa-lib
|
|
|
|
}:
|
|
|
|
|
2023-02-20 00:49:39 +07:00
|
|
|
rustPlatform.buildRustPackage {
|
2023-01-24 19:43:26 +07:00
|
|
|
pname = "home-daemon";
|
2024-03-19 15:30:38 +07:00
|
|
|
version = "0.2.0";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ alsa-lib ];
|
2023-01-24 19:43:26 +07:00
|
|
|
|
2024-03-19 15:30:38 +07:00
|
|
|
src = nix-gitignore.gitignoreSource [ "/target" "default.nix" ] ./.;
|
2023-01-24 19:43:26 +07:00
|
|
|
|
2023-03-07 19:46:23 +07:00
|
|
|
cargoLock.lockFile = ./Cargo.lock;
|
2023-01-24 19:43:26 +07:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "My custom home daemon";
|
|
|
|
license = licenses.bsd0;
|
|
|
|
};
|
|
|
|
}
|