Instantiate haskell template

This commit is contained in:
Alexander Kobjolke 2023-10-09 18:45:47 +02:00
commit 5d02a9e424
9 changed files with 242 additions and 0 deletions

39
filepack.cabal Normal file
View file

@ -0,0 +1,39 @@
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.7.
--
-- see: https://github.com/sol/hpack
name: filepack
version: 0.0.1.0
author: Alexander Kobjolke
maintainer: alex@jakalx.net
copyright: Alexander Kobjolke 2022
license: MIT
build-type: Simple
extra-source-files:
README.org
library
exposed-modules:
FilePack
other-modules:
Paths_filepack
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >=4.13 && <5
default-language: GHC2021
executable filepack
main-is: filepack.hs
other-modules:
Paths_filepack
hs-source-dirs:
app
ghc-options: -Wall
build-depends:
base >=4.13 && <5
, filepack
default-language: GHC2021