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.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/thermoprint-spec.nix b/spec/thermoprint-spec.nix
index 2d1814e..82f018a 100644
--- a/spec/thermoprint-spec.nix
+++ b/spec/thermoprint-spec.nix
@@ -1,9 +1,9 @@
1{ mkDerivation, base, stdenv }: 1{ mkDerivation, base, bytestring, containers, stdenv, text, QuickCheck, quickcheck-instances, cabal-test-quickcheck, hspec }:
2mkDerivation { 2mkDerivation {
3 pname = "thermoprint-spec"; 3 pname = "thermoprint-spec";
4 version = "1.0.0"; 4 version = "1.0.0";
5 src = ./.; 5 src = ./.;
6 libraryHaskellDepends = [ base ]; 6 libraryHaskellDepends = [ base bytestring containers text QuickCheck quickcheck-instances cabal-test-quickcheck hspec ];
7 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 7 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
8 description = "A specification of the API and the payload datatypes and associated utilities"; 8 description = "A specification of the API and the payload datatypes and associated utilities";
9 license = stdenv.lib.licenses.publicDomain; 9 license = stdenv.lib.licenses.publicDomain;