From f8f14926db87ac6aa794c9f4e99629bfabea58ac Mon Sep 17 00:00:00 2001 From: Brandon Simmons Date: Mon, 16 Dec 2019 15:28:31 -0500 Subject: [PATCH] Check in hpack-generated cabal file to support cabal install workflow See https://github.com/hasura/graphql-engine/issues/3280 --- .gitignore | 1 - ci-info.cabal | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 ci-info.cabal diff --git a/.gitignore b/.gitignore index 55d6fb1..82f3a88 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -ci-info.cabal dist dist-* cabal-dev diff --git a/ci-info.cabal b/ci-info.cabal new file mode 100644 index 0000000..d0bd0c4 --- /dev/null +++ b/ci-info.cabal @@ -0,0 +1,44 @@ +-- This file has been generated from package.yaml by hpack version 0.9.1. +-- +-- see: https://github.com/sol/hpack + +name: ci-info +version: 0.1.0.0 +description: Please see the README on GitHub at +homepage: https://github.com/hasura/ci-info-hs#readme +bug-reports: https://github.com/hasura/ci-info-hs/issues +author: Ajeet D'Souza +maintainer: build@hasura.io +copyright: 2019 Hasura Inc. +license: MIT +license-file: LICENSE +build-type: Simple +cabal-version: >= 1.10 + +extra-source-files: + README.md + +source-repository head + type: git + location: https://github.com/hasura/ci-info-hs + +library + hs-source-dirs: + src + ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat -Widentities -Wredundant-constraints -Wmissing-export-lists -Wpartial-fields + build-depends: + base >= 4.7 && < 5 + , aeson + , aeson-casing + , hashable + , template-haskell + , th-lift-instances + , text + , unordered-containers + exposed-modules: + CI + other-modules: + CI.TH + CI.Types + Paths_ci_info + default-language: Haskell2010