2018-04-26 18:17:03 +03:00
|
|
|
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-30 13:01:14 +03:00
|
|
|
exposed-modules: Crypto.Hash.Truncated
|
|
|
|
, System.Nix.Nar
|
|
|
|
, System.Nix.Store
|
2018-04-26 18:17:03 +03:00
|
|
|
build-depends: base >=4.10 && <4.11,
|
|
|
|
-- Drop foundation when we can drop cryptonite <0.25
|
2018-04-30 13:01:14 +03:00
|
|
|
binary,
|
|
|
|
bytestring, containers, cryptonite, memory, foundation, basement,
|
2018-04-27 15:12:41 +03:00
|
|
|
text, regex-base, regex-tdfa-text,
|
2018-04-29 23:55:48 +03:00
|
|
|
hashable, unordered-containers, bytestring
|
2018-04-26 18:17:03 +03:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|