Skip to content

Instantly share code, notes, and snippets.

@ktvoelker
Last active August 29, 2015 14:23
Show Gist options
  • Save ktvoelker/22c94ddf9115743dd3d0 to your computer and use it in GitHub Desktop.
Save ktvoelker/22c94ddf9115743dd3d0 to your computer and use it in GitHub Desktop.
Example cabal package with incomplete other-modules section
module Bar where
name: example
version: 0.1.0.0
author: Karl Voelker
maintainer: karl@karlv.net
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Foo
build-depends: base >=4.8 && <4.9
default-language: Haskell2010
module Foo where
import Bar
import Distribution.Simple
main = defaultMain
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment