Initial commit

This commit is contained in:
2026-08-20 13:53:44 +03:00
commit f82e179c4b
12 changed files with 685 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{ mkDerivation, aeson, base, bytestring, lens, lens-aeson, lib
, network, text, time, websockets
}:
mkDerivation {
pname = "home-assistant-controller";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base bytestring lens lens-aeson network text time websockets
];
executableHaskellDepends = [ base ];
testHaskellDepends = [ base ];
license = lib.meta.getLicenseFromSpdxId "BSD-3-Clause";
mainProgram = "home-assistant-controller";
}