packages feed

rts-loader-0.0.0.1: rts-loader.cabal

name:                rts-loader
version:             0.0.0.1
synopsis:            Dynamically load Haskell libraries
description:
 Load and execute functions from Haskell dynamic libraries without being
 restricted to a single RTS/GHC version.
 .
 See README.md below for more information.

homepage:            https://github.com/DanielG/rts-loader
license:             GPL-3
license-file:        LICENSE
license-files:       LICENSE LICENSE.GHC
author:              Daneil Gröber
maintainer:          dxld@darkboxed.org
copyright:           Copyright (C) 2016  Daniel Gröber
category:            Distribution
cabal-version:       >= 1.24.0.0
build-type:          Custom
extra-source-files:  ChangeLog, README.md
tested-with:         GHC == 7.10.3, GHC == 8.0.1

library
  exposed-modules:   System.Loader.RTS
  other-modules:     Paths_rts_loader,
                     GHC.Way
  default-language:  Haskell2010
  build-depends:     base      < 4.10 && >= 4.8.0.0,
                     zenc      == 0.1.1,
                     unix      < 2.8  && >= 2.7.1.0,
                     filepath  < 1.5  && >= 1.4.0.0,
                     directory < 1.3  && >= 1.2.2.0,
                     Cabal     < 1.25 && >= 1.24.0.0

executable rts-loader
  main-is:           rts-loader.c
  x-install-dir:     $libexecdir
  -- PR pending: https://github.com/haskell/cabal/pull/3461
  -- install-dir:       $libexecdir
  default-language:
                     -- Not really, it's C actually. See Setup.hs
                     Haskell98

executable rts-loader-example
  main-is:           Example.hs
  default-language:  Haskell2010
  hs-source-dirs:    src

  build-depends:     base      < 4.10 && >= 4.8.0.0,
                     Cabal     < 1.25 && >= 1.24.0.0,
                     process   < 1.5  && >= 1.2.3.0,
                     rts-loader

custom-setup
  setup-depends:     base      < 4.10 && >= 4.8.0.0,
                     filepath  < 1.5  && >= 1.4.0.0,
                     Cabal     < 1.25 && >= 1.24.0.0

source-repository head
  type:              git
  location:          https://github.com/DanielG/rts-loader.git