File: missing-test-suite-deps.patch

package info (click to toggle)
haskell-secret-sharing 1.0.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 108 kB
  • ctags: 3
  • sloc: haskell: 130; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 764 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Author: Sean Whitton <spwhitton@spwhitton.name>
Description: add missing test suite dependencies
Forwarded: peter.robinson@monoid.at

---
--- haskell-secret-sharing-1.0.0.3.orig/secret-sharing.cabal
+++ haskell-secret-sharing-1.0.0.3/secret-sharing.cabal
@@ -60,7 +60,13 @@ test-suite Main
   build-depends:   base >= 4 && < 5,
                    QuickCheck >= 2.4,
                    test-framework >= 0.4.1,
-                   test-framework-quickcheck2
+                   test-framework-quickcheck2,
+                   polynomial,
+                   bytestring,
+                   vector,
+                   binary,
+                   finite-field,
+                   dice-entropy-conduit
   hs-source-dirs:  src, tests
   main-is:         Tests.hs