flake: Add dependency to process
This commit is contained in:
parent
b783faef1a
commit
5c113326e7
2 changed files with 5 additions and 5 deletions
|
|
@ -27,9 +27,10 @@ library
|
||||||
BlockArguments
|
BlockArguments
|
||||||
OverloadedStrings
|
OverloadedStrings
|
||||||
ImportQualifiedPost
|
ImportQualifiedPost
|
||||||
ghc-options: -Wall -Wunused-packages -fdefer-typed-holes
|
ghc-options: -Wall -fdefer-typed-holes
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.13 && <5
|
base >=4.13 && <5
|
||||||
|
, process
|
||||||
, text
|
, text
|
||||||
default-language: GHC2021
|
default-language: GHC2021
|
||||||
|
|
||||||
|
|
@ -43,7 +44,7 @@ executable hcat
|
||||||
BlockArguments
|
BlockArguments
|
||||||
OverloadedStrings
|
OverloadedStrings
|
||||||
ImportQualifiedPost
|
ImportQualifiedPost
|
||||||
ghc-options: -Wall -Wunused-packages -fdefer-typed-holes
|
ghc-options: -Wall -fdefer-typed-holes
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.13 && <5
|
base >=4.13 && <5
|
||||||
, hcat
|
, hcat
|
||||||
|
|
@ -61,7 +62,7 @@ test-suite spec
|
||||||
BlockArguments
|
BlockArguments
|
||||||
OverloadedStrings
|
OverloadedStrings
|
||||||
ImportQualifiedPost
|
ImportQualifiedPost
|
||||||
ghc-options: -Wall -Wunused-packages -fdefer-typed-holes
|
ghc-options: -Wall -fdefer-typed-holes
|
||||||
cpp-options: -DTEST
|
cpp-options: -DTEST
|
||||||
build-tool-depends:
|
build-tool-depends:
|
||||||
hspec-discover:hspec-discover
|
hspec-discover:hspec-discover
|
||||||
|
|
|
||||||
|
|
@ -13,12 +13,10 @@ dependencies:
|
||||||
- base >= 4.13 && < 5
|
- base >= 4.13 && < 5
|
||||||
# - bytestring
|
# - bytestring
|
||||||
# - time
|
# - time
|
||||||
# - process
|
|
||||||
# - directory
|
# - directory
|
||||||
|
|
||||||
ghc-options:
|
ghc-options:
|
||||||
- -Wall
|
- -Wall
|
||||||
- -Wunused-packages
|
|
||||||
- -fdefer-typed-holes
|
- -fdefer-typed-holes
|
||||||
|
|
||||||
default-extensions:
|
default-extensions:
|
||||||
|
|
@ -30,6 +28,7 @@ library:
|
||||||
source-dirs: src
|
source-dirs: src
|
||||||
dependencies:
|
dependencies:
|
||||||
- text
|
- text
|
||||||
|
- process
|
||||||
verbatim:
|
verbatim:
|
||||||
default-language: GHC2021
|
default-language: GHC2021
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue