mirror of
https://github.com/simplex-chat/haskell.nix.git
synced 2026-06-03 09:17:32 +00:00
64e8460c35
* Fix ghcjs for time_t is 64bit in emscripten now. * Fix error: qca2 has been removed, because it depended on qt4. * Add spdx 3.18 materialization. * Turn off building tests for wine-5.4 (due to IDL issue). * Fix options-doc.nix. * Comment added to force rebuild on hydra
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
cabal-version: 2.2
|
|
-- Initial package description 'project.cabal' generated by 'cabal init'.
|
|
-- For further documentation, see http://haskell.org/cabal/users-guide/
|
|
-- Comment added to force rebuild on hydra
|
|
|
|
name: project
|
|
version: 0.1.0.0
|
|
-- synopsis:
|
|
-- description:
|
|
-- bug-reports:
|
|
license: NONE
|
|
author: Rodney Lorrimar
|
|
maintainer: rodney.lorrimar@iohk.io
|
|
-- copyright:
|
|
-- category:
|
|
|
|
library
|
|
exposed-modules: Lib
|
|
build-depends: base >=4.11.1.0
|
|
hs-source-dirs: lib
|
|
default-language: Haskell2010
|
|
|
|
executable project
|
|
main-is: Main.hs
|
|
build-depends: base >=4.11.1.0
|
|
, project
|
|
default-language: Haskell2010
|
|
|
|
benchmark project-bench
|
|
type: exitcode-stdio-1.0
|
|
main-is: Main.hs
|
|
build-depends: base >=4.11.1.0
|
|
, project
|
|
default-language: Haskell2010
|
|
ghc-options: -threaded -rtsopts -Wall -O2
|
|
|
|
test-suite unit
|
|
type: exitcode-stdio-1.0
|
|
main-is: Main.hs
|
|
build-depends: base >=4.11.1.0
|
|
, project
|
|
, hspec
|
|
build-tools: hspec-discover
|
|
other-modules: LibSpec
|
|
default-language: Haskell2010
|
|
hs-source-dirs: test
|