summaryrefslogtreecommitdiff
path: root/trivmix.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'trivmix.cabal')
-rw-r--r--trivmix.cabal23
1 files changed, 20 insertions, 3 deletions
diff --git a/trivmix.cabal b/trivmix.cabal
index 40aa9a8..0e02a7d 100644
--- a/trivmix.cabal
+++ b/trivmix.cabal
@@ -2,7 +2,7 @@
2-- documentation, see http://haskell.org/cabal/users-guide/ 2-- documentation, see http://haskell.org/cabal/users-guide/
3 3
4name: trivmix 4name: trivmix
5version: 2.4.6 5version: 2.5.0
6-- synopsis: 6-- synopsis:
7-- description: 7-- description:
8license: PublicDomain 8license: PublicDomain
@@ -15,6 +15,14 @@ build-type: Simple
15-- extra-source-files: 15-- extra-source-files:
16cabal-version: >=1.10 16cabal-version: >=1.10
17 17
18library
19 hs-source-dirs: src
20 default-language: Haskell2010
21 exposed-modules: Trivmix.Types
22 build-depends: base >=4.7 && <4.8
23 , data-default >=0.5 && <1
24 , case-insensitive >=1.2 && <2
25
18executable trivmix 26executable trivmix
19 main-is: Trivmix.hs 27 main-is: Trivmix.hs
20 -- other-modules: 28 -- other-modules:
@@ -29,12 +37,21 @@ executable trivmix
29 , transformers >=0.3 && <1 37 , transformers >=0.3 && <1
30 , explicit-exception >=0.1 && <1 38 , explicit-exception >=0.1 && <1
31 , process >=1.2 && <2 39 , process >=1.2 && <2
32 , case-insensitive >=1.2 && <2
33 , filelock >=0.1 && <1 40 , filelock >=0.1 && <1
34 hs-source-dirs: src 41 , trivmix
42 hs-source-dirs: trivmix
35 default-language: Haskell2010 43 default-language: Haskell2010
36 ghc-options: -threaded 44 ghc-options: -threaded
37 45
46executable adjmix
47 main-is: Adjmix.hs
48 build-depends: base >=4.7 && <4.8
49 , optparse-applicative >=0.11 && <1
50 , filepath >=1.3 && <2
51 , trivmix
52 hs-source-dirs: adjmix
53 default-language: Haskell2010
54
38-- Local Variables: 55-- Local Variables:
39-- firestarter: "nix-shell -p haskellPackages.cabal2nix --command 'cabal2nix ./.' | tee trivmix.nix" 56-- firestarter: "nix-shell -p haskellPackages.cabal2nix --command 'cabal2nix ./.' | tee trivmix.nix"
40-- End: 57-- End: