2018-07-16 10:12:23 +03:00
|
|
|
name: hnix-store-remote
|
2019-03-22 15:17:56 +03:00
|
|
|
version: 0.2.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
|
2020-05-01 13:59:59 +03:00
|
|
|
category: Nix
|
2018-07-16 10:12:23 +03:00
|
|
|
build-type: Simple
|
2019-03-19 00:20:31 +03:00
|
|
|
extra-source-files: README.md
|
2018-07-16 10:12:23 +03:00
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules: System.Nix.Store.Remote
|
2020-05-29 15:40:53 +03:00
|
|
|
, System.Nix.Store.Remote.Binary
|
|
|
|
, System.Nix.Store.Remote.Builders
|
2018-07-16 10:12:23 +03:00
|
|
|
, System.Nix.Store.Remote.Logger
|
2020-05-29 15:40:53 +03:00
|
|
|
, System.Nix.Store.Remote.Parsers
|
2018-07-16 10:12:23 +03:00
|
|
|
, System.Nix.Store.Remote.Protocol
|
|
|
|
, System.Nix.Store.Remote.Types
|
2018-07-17 11:03:08 +03:00
|
|
|
, 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
|
2020-05-29 15:40:53 +03:00
|
|
|
, attoparsec
|
2018-07-16 10:12:23 +03:00
|
|
|
, bytestring
|
|
|
|
, binary
|
|
|
|
, bytestring
|
|
|
|
, containers
|
2020-05-29 15:40:53 +03:00
|
|
|
, filepath
|
2018-07-16 10:12:23 +03:00
|
|
|
, text
|
|
|
|
, unix
|
|
|
|
, network
|
2020-05-19 12:12:36 +03:00
|
|
|
, nix-derivation >= 1.1.1 && <2
|
2018-07-16 10:12:23 +03:00
|
|
|
, mtl
|
|
|
|
, unordered-containers
|
2020-05-29 15:40:53 +03:00
|
|
|
, filepath
|
|
|
|
, time
|
2018-07-16 10:12:23 +03:00
|
|
|
, hnix-store-core
|
2020-05-29 15:40:53 +03:00
|
|
|
, vector
|
2018-07-16 10:12:23 +03:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall
|
2020-05-29 15:40:53 +03:00
|
|
|
|
|
|
|
test-suite hnix-store-remote-tests
|
|
|
|
ghc-options: -rtsopts -fprof-auto
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Driver.hs
|
2020-05-19 12:12:36 +03:00
|
|
|
other-modules: Derivation
|
|
|
|
, NixDaemon
|
2020-05-29 15:40:53 +03:00
|
|
|
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
|
2020-05-19 12:12:36 +03:00
|
|
|
, nix-derivation
|
2020-05-29 15:40:53 +03:00
|
|
|
, temporary
|
|
|
|
, text
|
|
|
|
, time
|
|
|
|
, unix
|
|
|
|
, unordered-containers
|
|
|
|
, vector
|
2020-05-19 12:12:36 +03:00
|
|
|
, which
|
2020-05-29 15:40:53 +03:00
|
|
|
default-language: Haskell2010
|