aboutsummaryrefslogtreecommitdiff
path: root/spec/thermoprint-spec.nix
diff options
context:
space:
mode:
Diffstat (limited to 'spec/thermoprint-spec.nix')
-rw-r--r--spec/thermoprint-spec.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/thermoprint-spec.nix b/spec/thermoprint-spec.nix
new file mode 100644
index 0000000..2d1814e
--- /dev/null
+++ b/spec/thermoprint-spec.nix
@@ -0,0 +1,10 @@
1{ mkDerivation, base, stdenv }:
2mkDerivation {
3 pname = "thermoprint-spec";
4 version = "1.0.0";
5 src = ./.;
6 libraryHaskellDepends = [ base ];
7 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
8 description = "A specification of the API and the payload datatypes and associated utilities";
9 license = stdenv.lib.licenses.publicDomain;
10}