-- Initial dynamic-linker-template.cabal generated by cabal init. For -- further documentation, see http://haskell.org/cabal/users-guide/ name: dynamic-linker-template version: 0.1.0.3 synopsis: Automatically derive dynamic linking methods from a data type. description: This package uses Template Haskell to generate dynamic linking FFI methods from a data by using its field names. A load function is generated to create an instance of the data from a library path. . Optional symbols are supported (use Maybe types in the data structure). . A String->String method can be provided to deal with symbols whose names are not exactly the same as field names. . See for an example. homepage: http://github.com/hsyl20/dynamic-linker-template license: BSD3 license-file: LICENSE author: Sylvain HENRY maintainer: hsyl20@gmail.com -- copyright: category: System build-type: Simple cabal-version: >=1.8 library exposed-modules: System.Posix.DynamicLinker.Template -- other-modules: build-depends: base ==4.6.*, template-haskell ==2.8.*, unix ==2.6.*, containers ==0.5.0.* source-repository head type: git location: git://github.com/hsyl20/dynamic-linker-template.git