2018-07-16 10:12:23 +03:00
|
|
|
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
|
2018-07-17 11:03:08 +03:00
|
|
|
, System.Nix.Store.Remote.Util
|
2018-07-16 10:12:23 +03:00
|
|
|
|
2019-03-10 02:32:01 +03:00
|
|
|
build-depends: base >=4.10
|
2019-03-09 19:32:23 +03:00
|
|
|
, base64-bytestring
|
2018-07-16 10:12:23 +03:00
|
|
|
, 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
|
2018-07-17 12:15:21 +03:00
|
|
|
|
|
|
|
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
|