dotfiles/home/home-daemon/default.nix

15 lines
276 B
Nix
Raw Normal View History

2023-02-20 00:49:39 +07:00
{ lib, rustPlatform }:
rustPlatform.buildRustPackage {
2023-01-24 19:43:26 +07:00
pname = "home-daemon";
version = "0.1";
src = ../home-daemon;
cargoLock.lockFile = ../home-daemon/Cargo.lock;
meta = with lib; {
description = "My custom home daemon";
license = licenses.bsd0;
};
}