hnix-store/hnix-store-remote/hnix-store-remote.cabal
2020-07-14 13:27:24 +02:00

83 lines
2.8 KiB
Plaintext

name: hnix-store-remote
version: 0.2.0.0
synopsis: Remote hnix store
description: Implementation of the nix store using the daemon protocol.
homepage: https://github.com/haskell-nix/hnix-store
license: Apache-2.0
license-file: LICENSE
author: Richard Marko
maintainer: srk@48.io
copyright: 2018 Richard Marko
category: Nix
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
library
exposed-modules: System.Nix.Store.Remote
, System.Nix.Store.Remote.Binary
, System.Nix.Store.Remote.Builders
, System.Nix.Store.Remote.Logger
, System.Nix.Store.Remote.Parsers
, System.Nix.Store.Remote.Protocol
, System.Nix.Store.Remote.Types
, System.Nix.Store.Remote.Util
build-depends: base >=4.10 && <5
, attoparsec
, bytestring
, binary
, bytestring
, containers
, filepath
, text
, unix
, network
, nix-derivation >= 1.1.1 && <2
, mtl
, unordered-containers
, filepath
, time
, hnix-store-core
, vector
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite hnix-store-remote-tests
ghc-options: -rtsopts -fprof-auto
type: exitcode-stdio-1.0
main-is: Driver.hs
other-modules: Derivation
, NixDaemon
hs-source-dirs: tests
build-depends:
attoparsec
, hnix-store-core
, hnix-store-remote
, base
, base64-bytestring
, binary
, bytestring
, containers
, directory
, process
, filepath
, hspec-expectations-lifted
, tasty
, tasty-discover
, tasty-hspec
, tasty-hunit
, tasty-quickcheck
, linux-namespaces
, mtl
, nix-derivation
, temporary
, text
, time
, unix
, unordered-containers
, vector
, which
default-language: Haskell2010