Skip to content

Instantly share code, notes, and snippets.

@shapr
Created September 3, 2019 20:36
Show Gist options
  • Save shapr/03c78d9e410cb6db033b27d71ef34447 to your computer and use it in GitHub Desktop.
Save shapr/03c78d9e410cb6db033b27d71ef34447 to your computer and use it in GitHub Desktop.
a basic cabal package config file
cabal-version: >=1.10
name: whonknows
version: 0.1.0.0
license: BSD3
license-file: LICENSE
author: Shae Erisson
maintainer: [email protected]
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules: MyLibTest, MyLib, Main
build-depends: base >=4.12 && <4.13
default-language: Haskell2010
executable whonknows
main-is: Main.hs
build-depends: base >=4.12 && <4.13
default-language: Haskell2010
test-suite whonknows-test
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: MyLibTest.hs
build-depends: base >=4.12 && <4.13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment