Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Stack build. #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions datalog.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ library
containers,
unordered-containers,
hashable,
exceptions >= 0.5 && < 0.7,
exceptions >= 0.5 && < 0.9,
text,
transformers >= 0.3 && < 0.5,
vector >= 0.9 && < 0.11
Expand All @@ -47,7 +47,7 @@ executable datalog-repl
build-depends: base == 4.*,
datalog,
containers,
exceptions >= 0.5 && < 0.7,
exceptions >= 0.5 && < 0.9,
hashable,
haskeline,
parsec,
Expand Down
29 changes: 29 additions & 0 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md

# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
resolver: lts-3.7

# Local packages, usually specified by relative directory name
packages:
- '.'

# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
extra-deps: []

# Override default flag values for local packages and extra-deps
flags: {}

# Control whether we use the GHC we find on the path
# system-ghc: true

# Require a specific version of stack, using version ranges
# require-stack-version: -any # Default
# require-stack-version: >= 0.1.4.0

# Override the architecture used by stack, especially useful on Windows
# arch: i386
# arch: x86_64

# Extra directories used by stack for building
# extra-include-dirs: [/path/to/dir]
# extra-lib-dirs: [/path/to/dir]