aboutsummaryrefslogtreecommitdiff
path: root/server/thermoprint-server.nix
diff options
context:
space:
mode:
Diffstat (limited to 'server/thermoprint-server.nix')
-rw-r--r--server/thermoprint-server.nix18
1 files changed, 10 insertions, 8 deletions
diff --git a/server/thermoprint-server.nix b/server/thermoprint-server.nix
index a33e6db..d4ebb60 100644
--- a/server/thermoprint-server.nix
+++ b/server/thermoprint-server.nix
@@ -1,6 +1,7 @@
1{ mkDerivation, base, conduit, containers, data-default-class 1{ mkDerivation, base, bytestring, conduit, containers
2, deepseq, dyre, either, exceptions, extended-reals, hspec, mmorph 2, data-default-class, deepseq, dyre, either, encoding, exceptions
3, monad-control, monad-logger, mtl, persistent, persistent-sqlite 3, extended-reals, filelock, hspec, mmorph, monad-control
4, monad-logger, mtl, persistent, persistent-sqlite
4, persistent-template, QuickCheck, quickcheck-instances, resourcet 5, persistent-template, QuickCheck, quickcheck-instances, resourcet
5, servant-server, stdenv, stm, text, thermoprint-spec, time 6, servant-server, stdenv, stm, text, thermoprint-spec, time
6, transformers, wai, warp 7, transformers, wai, warp
@@ -12,16 +13,17 @@ mkDerivation {
12 isLibrary = true; 13 isLibrary = true;
13 isExecutable = true; 14 isExecutable = true;
14 libraryHaskellDepends = [ 15 libraryHaskellDepends = [
15 base conduit containers data-default-class deepseq dyre either 16 base bytestring conduit containers data-default-class deepseq dyre
16 exceptions extended-reals mmorph monad-control monad-logger mtl 17 either encoding exceptions extended-reals filelock mmorph
17 persistent persistent-template resourcet servant-server stm text 18 monad-control monad-logger mtl persistent persistent-template
18 thermoprint-spec time transformers wai warp 19 resourcet servant-server stm text thermoprint-spec time
20 transformers wai warp
19 ]; 21 ];
20 executableHaskellDepends = [ 22 executableHaskellDepends = [
21 base monad-logger mtl persistent-sqlite resourcet 23 base monad-logger mtl persistent-sqlite resourcet
22 ]; 24 ];
23 testHaskellDepends = [ 25 testHaskellDepends = [
24 base hspec QuickCheck quickcheck-instances 26 base hspec QuickCheck quickcheck-instances thermoprint-spec
25 ]; 27 ];
26 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 28 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
27 description = "Server for thermoprint-spec"; 29 description = "Server for thermoprint-spec";