aboutsummaryrefslogtreecommitdiff
path: root/spec/thermoprint-spec.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-01-10 04:43:42 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-01-10 04:43:42 +0000
commit6ec3c805ea2cd629a75641530de30ab39a191409 (patch)
tree9a63c2edbe6834a17a67b055279024b7ec31eb3a /spec/thermoprint-spec.nix
parent0bb617ff93d242d20e9e63f44664f38a653898d4 (diff)
downloadthermoprint-6ec3c805ea2cd629a75641530de30ab39a191409.tar
thermoprint-6ec3c805ea2cd629a75641530de30ab39a191409.tar.gz
thermoprint-6ec3c805ea2cd629a75641530de30ab39a191409.tar.bz2
thermoprint-6ec3c805ea2cd629a75641530de30ab39a191409.tar.xz
thermoprint-6ec3c805ea2cd629a75641530de30ab39a191409.zip
First stab at API
Diffstat (limited to 'spec/thermoprint-spec.nix')
-rw-r--r--spec/thermoprint-spec.nix14
1 files changed, 12 insertions, 2 deletions
diff --git a/spec/thermoprint-spec.nix b/spec/thermoprint-spec.nix
index 82f018a..ea903ba 100644
--- a/spec/thermoprint-spec.nix
+++ b/spec/thermoprint-spec.nix
@@ -1,9 +1,19 @@
1{ mkDerivation, base, bytestring, containers, stdenv, text, QuickCheck, quickcheck-instances, cabal-test-quickcheck, hspec }: 1{ mkDerivation, aeson, base, base64-bytestring, bytestring, Cabal
2, cabal-test-quickcheck, containers, deepseq, encoding, hspec
3, QuickCheck, quickcheck-instances, servant, stdenv, text
4}:
2mkDerivation { 5mkDerivation {
3 pname = "thermoprint-spec"; 6 pname = "thermoprint-spec";
4 version = "1.0.0"; 7 version = "1.0.0";
5 src = ./.; 8 src = ./.;
6 libraryHaskellDepends = [ base bytestring containers text QuickCheck quickcheck-instances cabal-test-quickcheck hspec ]; 9 libraryHaskellDepends = [
10 aeson base base64-bytestring bytestring Cabal cabal-test-quickcheck
11 containers deepseq encoding QuickCheck quickcheck-instances servant
12 text
13 ];
14 testHaskellDepends = [
15 base hspec QuickCheck quickcheck-instances
16 ];
7 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 17 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
8 description = "A specification of the API and the payload datatypes and associated utilities"; 18 description = "A specification of the API and the payload datatypes and associated utilities";
9 license = stdenv.lib.licenses.publicDomain; 19 license = stdenv.lib.licenses.publicDomain;