mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2024-11-24 13:46:09 +03:00
3c98e4ca5d
Related to #175
153 lines
3.5 KiB
Plaintext
153 lines
3.5 KiB
Plaintext
cabal-version: 2.2
|
|
name: hnix-store-core
|
|
version: 0.8.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: Nix
|
|
build-type: Simple
|
|
extra-source-files:
|
|
CHANGELOG.md
|
|
, README.md
|
|
, tests/samples/example0.drv
|
|
, tests/samples/example1.drv
|
|
, tests/fixtures/case-conflict.nar
|
|
|
|
common commons
|
|
ghc-options: -Wall
|
|
default-extensions:
|
|
ConstraintKinds
|
|
, DataKinds
|
|
, DeriveGeneric
|
|
, DeriveDataTypeable
|
|
, DeriveFunctor
|
|
, DeriveFoldable
|
|
, DeriveTraversable
|
|
, DeriveLift
|
|
, DerivingStrategies
|
|
, DerivingVia
|
|
, ExistentialQuantification
|
|
, FlexibleContexts
|
|
, FlexibleInstances
|
|
, GADTs
|
|
, ScopedTypeVariables
|
|
, StandaloneDeriving
|
|
, RecordWildCards
|
|
, TypeApplications
|
|
, TypeFamilies
|
|
, TypeOperators
|
|
, TypeSynonymInstances
|
|
, InstanceSigs
|
|
, KindSignatures
|
|
, MultiParamTypeClasses
|
|
, MultiWayIf
|
|
, TupleSections
|
|
, LambdaCase
|
|
, BangPatterns
|
|
, ViewPatterns
|
|
default-language: Haskell2010
|
|
|
|
library
|
|
import: commons
|
|
exposed-modules:
|
|
System.Nix.Base
|
|
, System.Nix.Base32
|
|
, System.Nix.Build
|
|
, System.Nix.ContentAddress
|
|
, System.Nix.Derivation
|
|
, System.Nix.DerivedPath
|
|
, System.Nix.Hash
|
|
, System.Nix.Hash.Truncation
|
|
, System.Nix.Nar
|
|
, System.Nix.Nar.Parser
|
|
, System.Nix.Nar.Streamer
|
|
, System.Nix.Nar.Effects
|
|
, System.Nix.Nar.Options
|
|
, System.Nix.ReadonlyStore
|
|
, System.Nix.Signature
|
|
, System.Nix.StorePath
|
|
, System.Nix.StorePath.Metadata
|
|
build-depends:
|
|
base >=4.12 && <5
|
|
, attoparsec
|
|
, algebraic-graphs >= 0.5 && < 0.8
|
|
, base16-bytestring >= 1.0
|
|
, base64-bytestring >= 1.2.1
|
|
, bytestring
|
|
, case-insensitive
|
|
, cereal
|
|
, containers
|
|
, constraints-extras
|
|
, data-default-class
|
|
, dependent-sum > 0.7
|
|
, dependent-sum-template > 0.1.1 && < 0.3
|
|
-- Required for cryptonite low-level type convertion
|
|
, memory
|
|
, cryptonite
|
|
, directory
|
|
, filepath
|
|
, hashable
|
|
, lifted-base
|
|
, monad-control
|
|
, mtl
|
|
, nix-derivation >= 1.1.1 && <2
|
|
, saltine >= 0.2 && < 0.3
|
|
, some > 1.0.5 && < 2
|
|
, time
|
|
, text
|
|
, unix
|
|
, unordered-containers
|
|
, vector
|
|
hs-source-dirs: src
|
|
|
|
Flag bounded_memory
|
|
description: Run tests of constant memory use (requires +RTS -T)
|
|
default: False
|
|
|
|
test-suite format-tests
|
|
import: commons
|
|
if flag(bounded_memory)
|
|
cpp-options: -DBOUNDED_MEMORY
|
|
ghc-options: -rtsopts -fprof-auto
|
|
type: exitcode-stdio-1.0
|
|
main-is: Driver.hs
|
|
other-modules:
|
|
Derivation
|
|
NarFormat
|
|
Hash
|
|
hs-source-dirs:
|
|
tests
|
|
build-tool-depends:
|
|
tasty-discover:tasty-discover
|
|
build-depends:
|
|
hnix-store-core
|
|
, attoparsec
|
|
, base
|
|
, base16-bytestring
|
|
, base64-bytestring
|
|
, binary
|
|
, bytestring
|
|
, containers
|
|
, cryptonite
|
|
, data-default-class
|
|
, directory
|
|
, filepath
|
|
, process
|
|
, tasty
|
|
, tasty-golden
|
|
, hspec
|
|
, tasty-hspec
|
|
, tasty-hunit
|
|
, tasty-quickcheck
|
|
, temporary
|
|
, text
|
|
, unix
|