hnix-store/hnix-store-core/hnix-store-core.cabal
Greg Hale 6734486e06 Put bounded-memory NAR format tests behind a cabal flag deaulting to False
The test suite fails when run naively, due to the use of haskell code that
uses gc statistics, and requires `+RTS -T` flags be passed to the testsuite.

We opt in to this flag for CI and for any default.nix that packages
hnix-store-core.
2018-09-11 23:09:00 -04:00

80 lines
2.3 KiB
Plaintext

name: hnix-store-core
version: 0.1.0.0
synopsis: Core effects for interacting with the Nix store.
description:
This package contains types and functions needed to describe
interactions with the Nix store abstracted away from
specific effectful context.
homepage: https://github.com/haskell-nix/hnix-store
license: Apache-2.0
license-file: LICENSE
author: Shea Levy
maintainer: shea@shealevy.com
copyright: 2018 Shea Levy
category: System
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
library
exposed-modules: Crypto.Hash.Truncated
, System.Nix.Build
, System.Nix.Derivation
, System.Nix.GC
, System.Nix.Nar
, System.Nix.Path
, System.Nix.Store
, System.Nix.Util
build-depends: base >=4.10 && <4.11
, basement
, bytestring
, binary
, bytestring
, containers
, cryptonite
, directory
, filepath
-- Drop foundation when we can drop cryptonite <0.25
, foundation
, hashable
, memory
, mtl
, regex-base
, regex-tdfa-text
, text
, unix
, unordered-containers
hs-source-dirs: src
default-language: Haskell2010
Flag bounded_memory
description: Run tests of constant memory use (requires +RTS -T)
default: False
test-suite format-tests
if flag(bounded_memory)
cpp-options: -DBOUNDED_MEMORY
ghc-options: -rtsopts -fprof-auto
type: exitcode-stdio-1.0
main-is: Driver.hs
other-modules:
NarFormat
hs-source-dirs:
tests
build-depends:
hnix-store-core
, base
, base64-bytestring
, binary
, bytestring
, containers
, directory
, process
, tasty
, tasty-discover
, tasty-hspec
, tasty-hunit
, tasty-quickcheck
, text
default-language: Haskell2010