aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/windows-env.cabal
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-08-21 19:18:04 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-08-21 19:25:22 +0300
commiteaf98538f2c8ff2abdac970c70930166d37e8c98 (patch)
treef4e9d2e5ac1897c84409bc6559fc5d89a3789136 /windows-env.cabal
parentfix builds with Stack >= 2.1.1 (diff)
downloadwindows-env-eaf98538f2c8ff2abdac970c70930166d37e8c98.tar.gz
windows-env-eaf98538f2c8ff2abdac970c70930166d37e8c98.zip
bump resolver
It includes the required Win32 version, so there's no need to mess with extra-deps. Also, it uses a newer Cabal version, which seems to require the Paths_ module to be listed in other-modules (and adds the autogen-modules field).
Diffstat (limited to 'windows-env.cabal')
-rw-r--r--windows-env.cabal27
1 files changed, 22 insertions, 5 deletions
diff --git a/windows-env.cabal b/windows-env.cabal
index 87d4948..a9daa97 100644
--- a/windows-env.cabal
+++ b/windows-env.cabal
@@ -37,7 +37,11 @@ library
executable addpath
hs-source-dirs: app
main-is: AddPath.hs
- other-modules: Utils.Path, Utils.Prompt, Utils.PromptMessage
+ other-modules: Utils.Path
+ , Utils.Prompt
+ , Utils.PromptMessage
+ , Paths_windows_env
+ autogen-modules: Paths_windows_env
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, optparse-applicative
@@ -48,7 +52,11 @@ executable addpath
executable paths
hs-source-dirs: app
main-is: ListPaths.hs
- other-modules: Utils.Path, Utils.Prompt, Utils.PromptMessage
+ other-modules: Utils.Path
+ , Utils.Prompt
+ , Utils.PromptMessage
+ , Paths_windows_env
+ autogen-modules: Paths_windows_env
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, directory
@@ -60,7 +68,10 @@ executable paths
executable delpath
hs-source-dirs: app
main-is: RemovePath.hs
- other-modules: Utils.Prompt, Utils.PromptMessage
+ other-modules: Utils.Prompt
+ , Utils.PromptMessage
+ , Paths_windows_env
+ autogen-modules: Paths_windows_env
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, optparse-applicative
@@ -71,7 +82,10 @@ executable delpath
executable setenv
hs-source-dirs: app
main-is: SetEnv.hs
- other-modules: Utils.Prompt, Utils.PromptMessage
+ other-modules: Utils.Prompt
+ , Utils.PromptMessage
+ , Paths_windows_env
+ autogen-modules: Paths_windows_env
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, optparse-applicative
@@ -82,7 +96,10 @@ executable setenv
executable delenv
hs-source-dirs: app
main-is: UnsetEnv.hs
- other-modules: Utils.Prompt, Utils.PromptMessage
+ other-modules: Utils.Prompt
+ , Utils.PromptMessage
+ , Paths_windows_env
+ autogen-modules: Paths_windows_env
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, optparse-applicative