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.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/server/thermoprint-server.nix b/server/thermoprint-server.nix
new file mode 100644
index 0000000..4f61c49
--- /dev/null
+++ b/server/thermoprint-server.nix
@@ -0,0 +1,15 @@
1{ mkDerivation, base, data-default, dyre, stdenv, thermoprint-spec
2}:
3mkDerivation {
4 pname = "thermoprint-server";
5 version = "0.0.0";
6 src = ./.;
7 isLibrary = false;
8 isExecutable = true;
9 executableHaskellDepends = [
10 base data-default dyre thermoprint-spec
11 ];
12 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
13 description = "Server for thermoprint-spec";
14 license = stdenv.lib.licenses.publicDomain;
15}