2018-04-26 18:17:03 +03:00
|
|
|
name: hnix-store-core
|
2019-03-22 15:46:43 +03:00
|
|
|
version: 0.2.0.0
|
2018-04-26 18:17:03 +03:00
|
|
|
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
|
2020-05-01 13:59:59 +03:00
|
|
|
category: Nix
|
2018-04-26 18:17:03 +03:00
|
|
|
build-type: Simple
|
|
|
|
extra-source-files: ChangeLog.md, README.md
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
2019-03-11 09:42:50 +03:00
|
|
|
exposed-modules: System.Nix.Base32
|
2020-05-29 15:40:53 +03:00
|
|
|
, System.Nix.Build
|
2018-09-17 03:29:53 +03:00
|
|
|
, System.Nix.Hash
|
2020-03-04 12:41:04 +03:00
|
|
|
, System.Nix.Internal.Base32
|
2018-10-22 06:14:21 +03:00
|
|
|
, System.Nix.Internal.Hash
|
2019-03-27 19:04:56 +03:00
|
|
|
, System.Nix.Internal.Signature
|
2019-03-21 07:01:40 +03:00
|
|
|
, System.Nix.Internal.StorePath
|
2018-04-30 13:01:14 +03:00
|
|
|
, System.Nix.Nar
|
2019-03-10 06:42:23 +03:00
|
|
|
, System.Nix.ReadonlyStore
|
2019-03-27 19:04:56 +03:00
|
|
|
, System.Nix.Signature
|
2019-03-21 07:01:40 +03:00
|
|
|
, System.Nix.StorePath
|
2019-03-27 19:04:56 +03:00
|
|
|
, System.Nix.StorePathMetadata
|
2019-03-19 00:20:31 +03:00
|
|
|
build-depends: base >=4.10 && <5
|
2020-05-29 15:40:53 +03:00
|
|
|
, attoparsec
|
2019-03-10 06:42:23 +03:00
|
|
|
, base16-bytestring
|
2018-05-01 11:46:56 +03:00
|
|
|
, bytestring
|
|
|
|
, binary
|
|
|
|
, bytestring
|
|
|
|
, containers
|
2018-10-22 06:14:21 +03:00
|
|
|
, cryptohash-md5
|
|
|
|
, cryptohash-sha1
|
|
|
|
, cryptohash-sha256
|
2018-05-01 11:46:56 +03:00
|
|
|
, directory
|
|
|
|
, filepath
|
|
|
|
, hashable
|
|
|
|
, mtl
|
2019-03-27 19:04:56 +03:00
|
|
|
, saltine
|
|
|
|
, time
|
2018-05-01 11:46:56 +03:00
|
|
|
, text
|
|
|
|
, unix
|
|
|
|
, unordered-containers
|
2018-10-22 06:14:21 +03:00
|
|
|
, vector
|
2018-04-26 18:17:03 +03:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
2018-05-01 11:46:56 +03:00
|
|
|
|
2018-09-12 06:09:00 +03:00
|
|
|
Flag bounded_memory
|
|
|
|
description: Run tests of constant memory use (requires +RTS -T)
|
|
|
|
default: False
|
|
|
|
|
2018-05-01 11:46:56 +03:00
|
|
|
test-suite format-tests
|
2018-09-12 06:09:00 +03:00
|
|
|
if flag(bounded_memory)
|
|
|
|
cpp-options: -DBOUNDED_MEMORY
|
2018-05-01 11:46:56 +03:00
|
|
|
ghc-options: -rtsopts -fprof-auto
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Driver.hs
|
|
|
|
other-modules:
|
2020-03-04 12:41:04 +03:00
|
|
|
Arbitrary
|
2018-05-01 11:46:56 +03:00
|
|
|
NarFormat
|
2018-10-22 06:14:21 +03:00
|
|
|
Hash
|
2020-05-29 15:40:53 +03:00
|
|
|
StorePath
|
2018-05-01 11:46:56 +03:00
|
|
|
hs-source-dirs:
|
2019-03-10 06:42:23 +03:00
|
|
|
tests
|
2018-05-01 11:46:56 +03:00
|
|
|
build-depends:
|
|
|
|
hnix-store-core
|
2020-05-29 15:40:53 +03:00
|
|
|
, attoparsec
|
2018-05-01 11:46:56 +03:00
|
|
|
, base
|
2020-03-04 12:41:04 +03:00
|
|
|
, base16-bytestring
|
2018-05-01 11:46:56 +03:00
|
|
|
, base64-bytestring
|
|
|
|
, binary
|
|
|
|
, bytestring
|
|
|
|
, containers
|
2020-05-29 15:40:53 +03:00
|
|
|
, filepath
|
2018-05-01 11:46:56 +03:00
|
|
|
, directory
|
|
|
|
, process
|
|
|
|
, tasty
|
|
|
|
, tasty-discover
|
|
|
|
, tasty-hspec
|
|
|
|
, tasty-hunit
|
|
|
|
, tasty-quickcheck
|
2018-10-22 06:14:21 +03:00
|
|
|
, temporary
|
2018-05-01 11:46:56 +03:00
|
|
|
, text
|
|
|
|
default-language: Haskell2010
|