Skip to content

Commit

Permalink
Update from Hackage at 2019-05-12T00:00:06Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed May 12, 2019
1 parent daad4a9 commit 2979437
Show file tree
Hide file tree
Showing 2 changed files with 155 additions and 0 deletions.
154 changes: 154 additions & 0 deletions cpkg/0.2.0.0/cpkg.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
cabal-version: 1.18
name: cpkg
version: 0.2.0.0
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2018-2019 Vanessa McHale
maintainer: vanessa.mchale@iohk.io
author: Vanessa McHale
synopsis: Build tool for C
description:
A build tool and package manager configured using [Dhall](https://github.com/dhall-lang/dhall-haskell).
category: Packaging, Package Management, Dhall, C
build-type: Simple
extra-source-files:
cabal.project
dhall/cpkg-prelude.dhall
dhall/cpkg-types.dhall
pkgs/pkg-set.dhall
pkgs/patches/*.patch
extra-doc-files: README.md
CHANGELOG.md

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

flag development
description:
Enable `-Werror`
default: False
manual: True

library
exposed-modules:
Package.C
build-tools: cpphs -any
hs-source-dirs: src
other-modules:
Package.C.Dhall
Package.C.Dhall.Type
Package.C.Type
Package.C.Type.Shared
Package.C.Type.Tree
Package.C.Type.Verbosity
Package.C.Type.Version
Package.C.Type.Vars
Package.C.Triple
Package.C.Triple.Type
Package.C.Triple.Parse
Package.C.Build
Package.C.Build.OS
Package.C.Build.Tree
Package.C.Unpack
Package.C.Error
Package.C.Fetch
Package.C.Monad
Package.C.Db.Type
Package.C.Db.Register
Package.C.Db.Monad
Package.C.Db.Memory
Package.C.PackageSet
Package.C.Logging
System.Process.Ext
System.Directory.Executable
Data.Text.Prettyprint.Doc.Custom
CPkgPrelude
default-language: Haskell2010
other-extensions: DeriveGeneric DeriveAnyClass OverloadedStrings
DerivingStrategies GeneralizedNewtypeDeriving RankNTypes
ghc-options: -Wall
build-depends:
base >=4.3 && <5,
containers >=0.6.0.0,
dhall >=1.23.0,
text -any,
temporary -any,
bytestring -any,
zlib -any,
bzlib -any,
lzma -any,
tar -any,
zip-archive -any,
prettyprinter -any,
http-client -any,
http-client-tls -any,
directory >=1.3.1.0,
filepath -any,
process -any,
mtl -any,
hashable -any,
binary -any,
microlens -any,
recursion >=2.2.3.0,
filemanip -any,
network-uri -any,
megaparsec -any,
libarchive >=1.0.4.0

if (flag(development) && impl(ghc <=8.2))
ghc-options: -Werror

if impl(ghc >=8.0)
ghc-options: -Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities

if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists

executable cpkg
main-is: Main.hs
hs-source-dirs: app
other-modules:
Paths_cpkg
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base -any,
cpkg -any,
optparse-applicative -any,
directory -any,
text -any

if (flag(development) && impl(ghc <=8.2))
ghc-options: -Werror

if impl(ghc >=8.0)
ghc-options: -Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities

if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists

test-suite cpkg-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base -any,
cpkg -any,
hspec -any,
hspec-megaparsec -any,
megaparsec -any

if flag(development)
ghc-options: -Werror

if impl(ghc >=8.0)
ghc-options: -Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities

if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
1 change: 1 addition & 0 deletions cpkg/0.2.0.0/cpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"4304ce276f9d01e0eef16363e23a8097","Skein512_512":"bc024a3a7b89512fd28f349c7cdb3788ccced889f064edd6c1dd7bf5683144d30ef6edd8fbb4f6e33eecd3c1faf36621f8a33e9aa76f71a9babde9fe31abd6ce","SHA1":"8f7f4b86992c749382c47a1915d03b427473bda3","SHA512":"20cde743bfce4524efc004fd1f52ec816e203fa46598eafbe8b19447e427e1b8120ad54734585b5e99a69b612f7c495380f4a2b464f9cfeab9f744da36a0817b","SHA256":"7e45d474f32f2f62c81f955a3768f6b1ffdc5a6ae4f80372913f8d6d4ee5e6c6"},"package-locations":["https://hackage.haskell.org/package/cpkg-0.2.0.0/cpkg-0.2.0.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/cpkg-0.2.0.0.tar.gz"],"package-size":47882}

0 comments on commit 2979437

Please sign in to comment.