hnix-store/hnix-store-remote/hnix-store-remote.cabal
2019-03-09 11:32:23 -05:00

52 lines
1.7 KiB
Plaintext

name: hnix-store-remote
version: 0.1.0.0
synopsis: Remote hnix store
description:
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: System
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.Logger
, System.Nix.Store.Remote.Protocol
, System.Nix.Store.Remote.Types
, System.Nix.Store.Remote.Util
build-depends: base >=4.10 && <4.12
, base64-bytestring
, bytestring
, binary
, bytestring
, containers
, text
, unix
, network
, mtl
, unordered-containers
-- , pretty-simple
-- , base16-bytestring
-- , base32-bytestring
, hnix-store-core
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable hnix-store-temporary-live-test
main-is: Main.hs
hs-source-dirs: app
build-depends: base
, mtl
, bytestring
, hnix-store-core
, hnix-store-remote
, unordered-containers
, pretty-simple