diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/thermoprint-spec.cabal | 2 | ||||
-rw-r--r-- | spec/thermoprint-spec.nix | 12 |
2 files changed, 8 insertions, 6 deletions
diff --git a/spec/thermoprint-spec.cabal b/spec/thermoprint-spec.cabal index b9f7fd6..40978c3 100644 --- a/spec/thermoprint-spec.cabal +++ b/spec/thermoprint-spec.cabal | |||
@@ -19,6 +19,7 @@ cabal-version: >=1.10 | |||
19 | library | 19 | library |
20 | hs-source-dirs: src | 20 | hs-source-dirs: src |
21 | exposed-modules: Thermoprint.Printout | 21 | exposed-modules: Thermoprint.Printout |
22 | , Thermoprint.Printout.BBCode | ||
22 | , Thermoprint.Identifiers | 23 | , Thermoprint.Identifiers |
23 | , Thermoprint.API | 24 | , Thermoprint.API |
24 | -- other-modules: | 25 | -- other-modules: |
@@ -27,6 +28,7 @@ library | |||
27 | , DeriveAnyClass | 28 | , DeriveAnyClass |
28 | , OverloadedStrings | 29 | , OverloadedStrings |
29 | build-depends: base >=4.8.1 && <5 | 30 | build-depends: base >=4.8.1 && <5 |
31 | , bbcode -any | ||
30 | , containers >=0.5.6 && <1 | 32 | , containers >=0.5.6 && <1 |
31 | , text >=1.2.1 && <2 | 33 | , text >=1.2.1 && <2 |
32 | , bytestring >=0.10.6 && <1 | 34 | , bytestring >=0.10.6 && <1 |
diff --git a/spec/thermoprint-spec.nix b/spec/thermoprint-spec.nix index 2da5d86..368f3a9 100644 --- a/spec/thermoprint-spec.nix +++ b/spec/thermoprint-spec.nix | |||
@@ -1,15 +1,15 @@ | |||
1 | { mkDerivation, aeson, base, base64-bytestring, bytestring, Cabal | 1 | { mkDerivation, aeson, base, base64-bytestring, bbcode, bytestring |
2 | , cabal-test-quickcheck, containers, deepseq, encoding, hspec | 2 | , Cabal, cabal-test-quickcheck, containers, deepseq, encoding |
3 | , QuickCheck, quickcheck-instances, servant, stdenv, text | 3 | , hspec, QuickCheck, quickcheck-instances, servant, stdenv, text |
4 | }: | 4 | }: |
5 | mkDerivation { | 5 | mkDerivation { |
6 | pname = "thermoprint-spec"; | 6 | pname = "thermoprint-spec"; |
7 | version = "1.0.0"; | 7 | version = "1.0.0"; |
8 | src = ./.; | 8 | src = ./.; |
9 | libraryHaskellDepends = [ | 9 | libraryHaskellDepends = [ |
10 | aeson base base64-bytestring bytestring Cabal cabal-test-quickcheck | 10 | aeson base base64-bytestring bbcode bytestring Cabal |
11 | containers deepseq encoding QuickCheck quickcheck-instances servant | 11 | cabal-test-quickcheck containers deepseq encoding QuickCheck |
12 | text | 12 | quickcheck-instances servant text |
13 | ]; | 13 | ]; |
14 | testHaskellDepends = [ | 14 | testHaskellDepends = [ |
15 | aeson base hspec QuickCheck quickcheck-instances | 15 | aeson base hspec QuickCheck quickcheck-instances |