aboutsummaryrefslogtreecommitdiff
path: root/spec/thermoprint-spec.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2015-12-25 21:37:46 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2015-12-25 21:37:46 +0000
commit97d7a67a0ad5e18f3b4e889e1ce3bb08d0f97c19 (patch)
tree22bf35e3de1093ff63c76a8c212d27f1a4d05aae /spec/thermoprint-spec.nix
parentf95879a43e90bfea91759f933bb19c704cfac3a9 (diff)
downloadthermoprint-97d7a67a0ad5e18f3b4e889e1ce3bb08d0f97c19.tar
thermoprint-97d7a67a0ad5e18f3b4e889e1ce3bb08d0f97c19.tar.gz
thermoprint-97d7a67a0ad5e18f3b4e889e1ce3bb08d0f97c19.tar.bz2
thermoprint-97d7a67a0ad5e18f3b4e889e1ce3bb08d0f97c19.tar.xz
thermoprint-97d7a67a0ad5e18f3b4e889e1ce3bb08d0f97c19.zip
Framework for thermoprint-spec
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}