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.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/server/thermoprint-server.nix b/server/thermoprint-server.nix
index 4f61c49..7154dc3 100644
--- a/server/thermoprint-server.nix
+++ b/server/thermoprint-server.nix
@@ -1,4 +1,5 @@
1{ mkDerivation, base, data-default, dyre, stdenv, thermoprint-spec 1{ mkDerivation, base, data-default-class, dyre, servant-server
2, stdenv, thermoprint-spec, wai, warp
2}: 3}:
3mkDerivation { 4mkDerivation {
4 pname = "thermoprint-server"; 5 pname = "thermoprint-server";
@@ -7,7 +8,8 @@ mkDerivation {
7 isLibrary = false; 8 isLibrary = false;
8 isExecutable = true; 9 isExecutable = true;
9 executableHaskellDepends = [ 10 executableHaskellDepends = [
10 base data-default dyre thermoprint-spec 11 base data-default-class dyre servant-server thermoprint-spec wai
12 warp
11 ]; 13 ];
12 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 14 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
13 description = "Server for thermoprint-spec"; 15 description = "Server for thermoprint-spec";