mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-11-30 01:24:29 +03:00
8fcc5c7b91
This replaces the sub-optimal use of cabal flags with a more robust & idiomatic conditional pattern for depending on ghc-prim. This is also reduces the complexity for the cabal solver, since there are no flags to solve for anymore. Fixes #52
42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
-- Initial relational-quickcheck.cabal generated by cabal init. For
|
|
-- further documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: rr-quickcheck
|
|
version: 0.1.0.0
|
|
synopsis: Query quickchecks for Relational Record
|
|
description: This package contains quickchecks which compares between
|
|
Haskell list operation and query result of Relational Record
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Kei Hibino
|
|
maintainer: ex8k.hibino@gmail.com
|
|
copyright: Copyright (c) 2017 Kei Hibino
|
|
category: Testing
|
|
build-type: Simple
|
|
-- extra-source-files:
|
|
cabal-version: >=1.10
|
|
|
|
library
|
|
exposed-modules:
|
|
Test.Relational.QuickCheck.Model
|
|
Test.Relational.QuickCheck.Arbitrary
|
|
|
|
Test.Relational.QuickCheck.Tests
|
|
-- other-modules:
|
|
other-extensions: TemplateHaskell, MultiParamTypeClasses, FlexibleInstances
|
|
build-depends: base <5
|
|
, QuickCheck >=2
|
|
, quickcheck-simple
|
|
, HDBC
|
|
, HDBC-session
|
|
, persistable-record
|
|
, relational-query
|
|
, relational-query-HDBC
|
|
|
|
if impl(ghc == 7.4.*)
|
|
build-depends: ghc-prim == 0.2.*
|
|
|
|
hs-source-dirs: src
|
|
ghc-options: -Wall
|
|
default-language: Haskell2010
|