hnix-store/hnix-store-remote/hnix-store-remote.cabal

96 lines
3.1 KiB
Plaintext
Raw Normal View History

2018-07-16 10:12:23 +03:00
name: hnix-store-remote
2020-12-30 16:14:57 +03:00
version: 0.4.0.0
2018-07-16 10:12:23 +03:00
synopsis: Remote hnix store
2019-03-19 00:20:31 +03:00
description: Implementation of the nix store using the daemon protocol.
2018-07-16 10:12:23 +03:00
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
2018-07-16 10:12:23 +03:00
build-type: Simple
2020-07-14 13:42:46 +03:00
extra-source-files: ChangeLog.md, README.md
2018-07-16 10:12:23 +03:00
cabal-version: >=1.10
flag io-testsuite
default:
False
description:
Enable testsuite, which requires external
binaries and Linux namespace support.
2018-07-16 10:12:23 +03:00
library
exposed-modules: System.Nix.Store.Remote
, System.Nix.Store.Remote.Binary
, System.Nix.Store.Remote.Builders
2018-07-16 10:12:23 +03:00
, System.Nix.Store.Remote.Logger
, System.Nix.Store.Remote.Parsers
2018-07-16 10:12:23 +03:00
, System.Nix.Store.Remote.Protocol
, System.Nix.Store.Remote.Types
, System.Nix.Store.Remote.Util
2018-07-16 10:12:23 +03:00
2019-03-19 00:20:31 +03:00
build-depends: base >=4.10 && <5
, attoparsec
2018-07-16 10:12:23 +03:00
, bytestring
, binary
, bytestring
, containers
, filepath
2018-07-16 10:12:23 +03:00
, text
, unix
, network
, nix-derivation >= 1.1.1 && <2
2018-07-16 10:12:23 +03:00
, mtl
, unordered-containers
, filepath
, time
2020-12-30 16:15:21 +03:00
, hnix-store-core >= 0.4 && <0.5
, vector
2018-07-16 10:12:23 +03:00
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite hnix-store-remote-tests
if !flag(io-testsuite)
buildable: False
ghc-options: -rtsopts -fprof-auto
type: exitcode-stdio-1.0
main-is: Driver.hs
other-modules: Derivation
, NixDaemon
2020-11-11 02:38:04 +03:00
, Spec
, Util
hs-source-dirs: tests
build-depends:
attoparsec
, hnix-store-core >= 0.3
, hnix-store-remote
, base
, base64-bytestring
, binary
, bytestring
, containers
, directory
, process
, filepath
, hspec-expectations-lifted
2020-11-11 02:38:04 +03:00
, quickcheck-text
, 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