minimal viable product

This commit is contained in:
vegowotenks 2025-05-02 22:15:46 +02:00
commit afbec2ab33
12 changed files with 413 additions and 0 deletions

56
generic-derive.cabal Normal file
View file

@ -0,0 +1,56 @@
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.38.0.
--
-- see: https://github.com/sol/hpack
name: generic-derive
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/githubuser/generic-derive#readme>
homepage: https://github.com/githubuser/isomorphic-derive#readme
bug-reports: https://github.com/githubuser/isomorphic-derive/issues
author: VegOwOtenks
maintainer: vegowotenks@jossco.de
copyright: AGPL3
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/githubuser/isomorphic-derive
library
exposed-modules:
GHC.Generics.Coerce
GHC.Generics.Coerce.Example
GHC.Generics.CoerceTo
GHC.Generics.CoerceTo.Example
other-modules:
Paths_generic_derive
autogen-modules:
Paths_generic_derive
hs-source-dirs:
src
ghc-options: -Weverything
build-depends:
base >=4.7 && <5
default-language: Haskell2010
test-suite isomorphic-derive-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_generic_derive
autogen-modules:
Paths_generic_derive
hs-source-dirs:
test
ghc-options: -Weverything -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, isomorphic-derive
default-language: Haskell2010