haskell my beloved

This commit is contained in:
crumbtoo
2023-11-08 12:27:30 -07:00
parent 90cea92c13
commit 2504f91572
44 changed files with 510 additions and 129 deletions

51
rlp.cabal Normal file
View File

@@ -0,0 +1,51 @@
cabal-version: 3.0
name: rlp
version: 0.1.0.0
-- synopsis:
-- description:
license: GPL-2.0-only
-- license-file: LICENSE
author: crumbtoo
maintainer: crumb@disroot.org
-- copyright:
category: Language
build-type: Simple
extra-doc-files: README.md
-- extra-source-files:
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: Core
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.18.0.0
hs-source-dirs: src
default-language: GHC2021
executable rlpc
import: warnings
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends:
base ^>=4.18.0.0,
rlp
hs-source-dirs: app
default-language: GHC2021
test-suite rlp-test
import: warnings
default-language: GHC2021
-- other-modules:
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: tst
main-is: Main.hs
build-depends:
base ^>=4.18.0.0,
rlp