hnix-store/hnix-store-core/hnix-store-core.cabal

27 lines
1.0 KiB
Plaintext
Raw Normal View History

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
2018-04-27 07:33:06 +03:00
exposed-modules: Crypto.Hash.Truncated, System.Nix.Store
build-depends: base >=4.10 && <4.11,
-- Drop foundation when we can drop cryptonite <0.25
2018-04-27 07:33:06 +03:00
cryptonite, memory, foundation, basement,
text, regex-base, regex-tdfa-text
hs-source-dirs: src
default-language: Haskell2010