28 lines
1021 B
Nix
28 lines
1021 B
Nix
{ mkDerivation, aeson, annotated-exception, async, base, bytestring
|
|
, cereal, cereal-conduit, conduit, containers, directory, ekg-core
|
|
, filepath, hedgehog, hspec, hspec-hedgehog, katip, lens
|
|
, lens-aeson, lib, network, process, stm, text, time
|
|
, unordered-containers, uuid, websockets
|
|
}:
|
|
mkDerivation {
|
|
pname = "home-assistant-controller";
|
|
version = "0.1.0.0";
|
|
src = ./.;
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [
|
|
aeson annotated-exception async base bytestring cereal
|
|
cereal-conduit conduit containers directory ekg-core filepath katip
|
|
lens lens-aeson network process stm text time unordered-containers
|
|
uuid websockets
|
|
];
|
|
executableHaskellDepends = [ base ];
|
|
testHaskellDepends = [
|
|
aeson annotated-exception async base cereal containers directory
|
|
ekg-core hedgehog hspec hspec-hedgehog katip process stm text time
|
|
unordered-containers uuid
|
|
];
|
|
license = lib.meta.getLicenseFromSpdxId "BSD-3-Clause";
|
|
mainProgram = "home-assistant-controller";
|
|
}
|