From 78a70a2fc20c998be4e33d7593e4213166b581d3 Mon Sep 17 00:00:00 2001 From: Stefan Risberg Date: Thu, 16 Mar 2023 22:06:56 +0100 Subject: [PATCH] added cabal file to repo --- .gitignore | 1 - ris-util.cabal | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+), 1 deletion(-) create mode 100644 ris-util.cabal diff --git a/.gitignore b/.gitignore index 0017d98..997af62 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,3 @@ cabal.project.local cabal.project.local~ .HTF/ .ghc.environment.* -*.cabal diff --git a/ris-util.cabal b/ris-util.cabal new file mode 100644 index 0000000..a501c1b --- /dev/null +++ b/ris-util.cabal @@ -0,0 +1,67 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.35.1. +-- +-- see: https://github.com/sol/hpack + +name: ris-util +version: 0.0.1 +description: Please see the README at +homepage: https://git.fiskhamn.se/steffenomak/ris-util#readme +author: Stefan Risberg +maintainer: steffenomak@gmail.com +copyright: 2023 Stefan Risberg +license: BSD3 +build-type: Simple +extra-source-files: + README.md + +library + exposed-modules: + Effects.Log + Effects.Time + Terminal + other-modules: + Paths_ris_util + hs-source-dirs: + src + default-extensions: + BangPatterns + BlockArguments + ConstraintKinds + DataKinds + DeriveAnyClass + DeriveGeneric + DuplicateRecordFields + FlexibleContexts + FlexibleInstances + GADTs + LambdaCase + MultiParamTypeClasses + OverloadedLabels + OverloadedStrings + PolyKinds + QuasiQuotes + RankNTypes + ScopedTypeVariables + TemplateHaskell + TupleSections + TypeApplications + TypeFamilies + TypeOperators + UndecidableInstances + StandaloneDeriving + ImportQualifiedPost + LambdaCase + ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints + build-depends: + base >=4.7 && <5 + , chronos >=1.1.5 && <2 + , co-log-core ==0.3.* + , effectful >=2.2.2.0 && <3 + , effectful-core >=2.2.2.0 && <3 + , effectful-th ==1.* + , text ==1.2.* + , torsor ==0.1 + , unliftio ==0.2.* + default-language: Haskell2010