Skip to content

Commit

Permalink
Update from Hackage at 2019-10-01T13:47:46Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Oct 1, 2019
1 parent 783cff5 commit b51789e
Show file tree
Hide file tree
Showing 2 changed files with 159 additions and 0 deletions.
158 changes: 158 additions & 0 deletions cachix/0.3.4/cachix.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
cabal-version: 2.2
name: cachix
version: 0.3.4
license: Apache-2.0
license-file: LICENSE
copyright: 2018 Domen Kožar
maintainer: domen@enlambda.com
author: Domen Kožar
homepage: https://github.com/cachix/cachix#readme
bug-reports: https://github.com/cachix/cachix/issues
synopsis:
Command line client for Nix binary cache hosting https://cachix.org

build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
cbits/aliases.h
test/data/*.input
test/data/*.output

common defaults
default-extensions:
NoImplicitPrelude
DeriveAnyClass
DeriveGeneric
OverloadedStrings

ghc-options:
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wredundant-constraints -fwarn-tabs
-fwarn-unused-imports -fwarn-missing-signatures
-fwarn-name-shadowing -fwarn-incomplete-patterns

default-language: Haskell2010

source-repository head
type: git
location: https://github.com/cachix/cachix

library
import: defaults
exposed-modules:
Cachix.Client
Cachix.Client.Commands
Cachix.Client.Config
Cachix.Client.Config.Orphans
Cachix.Client.Env
Cachix.Client.Exception
Cachix.Client.InstallationMode
Cachix.Client.NetRc
Cachix.Client.NixConf
Cachix.Client.NixVersion
Cachix.Client.OptionsParser
Cachix.Client.Push
Cachix.Client.Secrets
Cachix.Client.Servant
Cachix.Client.Store
Cachix.Client.Store.Context
Cachix.Client.URI

cc-options: -Wall
pkgconfig-depends: nix-store ==2.0 || >2.0, nix-main ==2.0 || >2.0
hs-source-dirs: src
other-modules: Paths_cachix
autogen-modules: Paths_cachix
extra-libraries:
stdc++
boost_context

include-dirs: cbits
build-depends:
, async
, base >=4.7 && <5
, base64-bytestring
, bytestring
, cachix-api
, conduit >=1.3.0
, conduit-extra
, containers
, cookie
, cryptonite
, dhall
, directory
, ed25519
, filepath
, fsnotify
, here
, hnix-store-core
, http-client
, http-client-tls
, http-conduit
, http-types
, inline-c
, inline-c-cpp
, lzma-conduit
, megaparsec >=7.0.0
, memory
, mmorph
, netrc
, optparse-applicative
, process
, protolude
, resourcet
, retry
, safe-exceptions
, servant >=0.15
, servant-auth
, servant-auth-client >=0.3.3.0
, servant-client >=0.15
, servant-client-core >=0.15
, servant-conduit
, text
, unix
, uri-bytestring
, versions

ghc-options: -optc=-std=c++17

if os(osx)
ghc-options: -pgmc=clang++

executable cachix
import: defaults
main-is: Main.hs
build-tool-depends: hspec-discover:hspec-discover -any
ghc-options: -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: cachix
other-modules: Paths_cachix
autogen-modules: Paths_cachix
build-depends:
, base >=4.7 && <5
, cachix
, cachix-api

test-suite cachix-test
import: defaults
type: exitcode-stdio-1.0
ghc-options: -threaded -rtsopts -with-rtsopts=-N
main-is: Main.hs
hs-source-dirs: test
other-modules:
InstallationModeSpec
NetRcSpec
NixConfSpec
NixVersionSpec
Paths_cachix
Spec

build-depends:
, base >=4.7 && <5
, cachix
, cachix-api
, directory
, here
, hspec
, protolude
, temporary
1 change: 1 addition & 0 deletions cachix/0.3.4/cachix.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"36f8c0d2d0aacb72780441fc30ca9821","Skein512_512":"d4a03e598787e4ba360246e0093070b8a689b77132f135415cded6db8604517418a020b13a8e7a0334c14a27b16bfd5dad8161dd0893040a72a31a5bc268d977","SHA1":"00cc7b6ad91bb8d9e14de1d96a22088e53edd4d4","SHA512":"d5ede3b660862a776568b8f94859bf720169a314acba21355724b419d053cc328e9136bde566b766f778633fc4ae6118eb666190bccc0204b2e3cf97a2d0216a","SHA256":"1dc772a6402dc9544d44c2146a5c0334701379fe31e1e39657b6ad0b3c5f4efd"},"package-locations":["https://hackage.haskell.org/package/cachix-0.3.4/cachix-0.3.4.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/cachix-0.3.4.tar.gz"],"package-size":23917}

0 comments on commit b51789e

Please sign in to comment.