aboutsummaryrefslogtreecommitdiff
path: root/spec/thermoprint-spec.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-01-18 12:09:36 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-01-18 12:09:36 +0000
commit57c56564d15cd5c83a4f1d1bab5490e6b75e8656 (patch)
tree55ea741665155b46b9e599b149dee3323fe479c0 /spec/thermoprint-spec.nix
parent9435083465a487553b21c599c1340aa5e5ed8a1c (diff)
downloadthermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar.gz
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar.bz2
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar.xz
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.zip
Moved Printout.BBCode to own module
Diffstat (limited to 'spec/thermoprint-spec.nix')
-rw-r--r--spec/thermoprint-spec.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/spec/thermoprint-spec.nix b/spec/thermoprint-spec.nix
index 0e548a6..5a89bcf 100644
--- a/spec/thermoprint-spec.nix
+++ b/spec/thermoprint-spec.nix
@@ -1,16 +1,15 @@
1{ mkDerivation, aeson, base, base64-bytestring, bbcode, bytestring 1{ mkDerivation, aeson, base, base64-bytestring, bytestring, Cabal
2, Cabal, cabal-test-quickcheck, case-insensitive, containers 2, cabal-test-quickcheck, containers, deepseq, encoding, hspec
3, deepseq, encoding, hspec, QuickCheck, quickcheck-instances 3, QuickCheck, quickcheck-instances, servant, stdenv, text
4, servant, stdenv, text
5}: 4}:
6mkDerivation { 5mkDerivation {
7 pname = "thermoprint-spec"; 6 pname = "thermoprint-spec";
8 version = "2.0.0"; 7 version = "2.0.0";
9 src = ./.; 8 src = ./.;
10 libraryHaskellDepends = [ 9 libraryHaskellDepends = [
11 aeson base base64-bytestring bbcode bytestring Cabal 10 aeson base base64-bytestring bytestring Cabal cabal-test-quickcheck
12 cabal-test-quickcheck case-insensitive containers deepseq encoding 11 containers deepseq encoding QuickCheck quickcheck-instances servant
13 QuickCheck quickcheck-instances servant text 12 text
14 ]; 13 ];
15 testHaskellDepends = [ 14 testHaskellDepends = [
16 aeson base hspec QuickCheck quickcheck-instances 15 aeson base hspec QuickCheck quickcheck-instances