nixos-configs/devices/homie/modules/home-assistant/netdaemon/package.nix
matt1432 82a05091a5
All checks were successful
Discord / discord commits (push) Has been skipped
feat(hass): setup netdaemon
2024-10-05 12:38:13 -04:00

22 lines
469 B
Nix

{
buildDotnetModule,
dotnetCorePackages,
}:
buildDotnetModule {
pname = "netdaemon-config";
version = "0.0.0";
src =
builtins.filterSource
(file: type:
(type != "directory")
|| (baseNameOf file != "default.nix" && baseNameOf file != "package.nix"))
./.;
projectFile = "netdaemon.csproj";
nugetDeps = ./deps.nix;
dotnet-sdk = dotnetCorePackages.sdk_8_0;
dotnet-runtime = dotnetCorePackages.runtime_8_0;
executables = [];
}