aboutsummaryrefslogtreecommitdiff
path: root/server/thermoprint-server.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-02-18 21:59:00 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-02-18 21:59:00 +0000
commit55074a07fdb847749e4f57c6c2eac4ffab1d48b6 (patch)
tree5cd211775cf84fffa934a17ce276be2d6b3990f6 /server/thermoprint-server.nix
parent2d16ad6786e6047fc61b34e6bd7e59e794a9d5a3 (diff)
downloadthermoprint-55074a07fdb847749e4f57c6c2eac4ffab1d48b6.tar
thermoprint-55074a07fdb847749e4f57c6c2eac4ffab1d48b6.tar.gz
thermoprint-55074a07fdb847749e4f57c6c2eac4ffab1d48b6.tar.bz2
thermoprint-55074a07fdb847749e4f57c6c2eac4ffab1d48b6.tar.xz
thermoprint-55074a07fdb847749e4f57c6c2eac4ffab1d48b6.zip
Api tests for Thermoprint.Server
Diffstat (limited to 'server/thermoprint-server.nix')
-rw-r--r--server/thermoprint-server.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/server/thermoprint-server.nix b/server/thermoprint-server.nix
index 737f571..d7a7684 100644
--- a/server/thermoprint-server.nix
+++ b/server/thermoprint-server.nix
@@ -1,10 +1,10 @@
1{ mkDerivation, base, binary, bytestring, conduit, containers 1{ mkDerivation, base, binary, bytestring, conduit, containers
2, data-default-class, deepseq, dyre, either, encoding, exceptions 2, data-default-class, deepseq, dyre, either, encoding, exceptions
3, extended-reals, filelock, hspec, hspec-contrib, HUnit, mmorph 3, extended-reals, filelock, hspec, mmorph, monad-control
4, monad-control, monad-logger, mtl, persistent, persistent-sqlite 4, monad-logger, mtl, persistent, persistent-sqlite
5, persistent-template, QuickCheck, quickcheck-instances, resourcet 5, persistent-template, QuickCheck, quickcheck-instances, resourcet
6, servant-server, stdenv, stm, temporary, text, thermoprint-spec 6, servant-server, stdenv, stm, temporary, text, thermoprint-client
7, time, transformers, wai, warp 7, thermoprint-spec, time, transformers, wai, warp
8}: 8}:
9mkDerivation { 9mkDerivation {
10 pname = "thermoprint-server"; 10 pname = "thermoprint-server";
@@ -23,8 +23,9 @@ mkDerivation {
23 base monad-logger mtl persistent-sqlite resourcet 23 base monad-logger mtl persistent-sqlite resourcet
24 ]; 24 ];
25 testHaskellDepends = [ 25 testHaskellDepends = [
26 base hspec hspec-contrib HUnit QuickCheck quickcheck-instances 26 base exceptions hspec monad-logger mtl persistent-sqlite QuickCheck
27 temporary thermoprint-spec 27 quickcheck-instances resourcet stm temporary text
28 thermoprint-client thermoprint-spec transformers warp
28 ]; 29 ];
29 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 30 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
30 description = "Server for thermoprint-spec"; 31 description = "Server for thermoprint-spec";