dotfiles/home/home-daemon/default.nix

15 lines
341 B
Nix
Raw Normal View History

{ lib, rustPlatform, nix-gitignore }:
2023-02-20 00:49:39 +07:00
rustPlatform.buildRustPackage {
2023-01-24 19:43:26 +07:00
pname = "home-daemon";
version = "0.1";
src = nix-gitignore.gitignoreSource ["/target" "default.nix"] (lib.cleanSource ./.);
2023-01-24 19:43:26 +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;
};
}