packages feed

glpk-headers-0.5.1: glpk-headers.cabal

cabal-version:       2.4
name:                glpk-headers
version:             0.5.1
synopsis:            Low-level Haskell bindings to the GLPK library
description:         Please see the README on GitHub at <https://github.com/prsteele/math-programming/blob/main/glpk-headers/README.md>
bug-reports:         https://github.com/prsteele/math-programming/issues
license:             BSD-3-Clause
license-file:        LICENSE
author:              Patrick Steele
maintainer:          steele.pat@gmail.com
copyright:           2018-2023, Patrick Steele
category:            Math
build-type:          Simple
extra-source-files:  README.md, ChangeLog.md

source-repository head
  type:     git
  location: https://github.com/prsteele/math-programming

library
  default-language:  Haskell2010
  hs-source-dirs:    src
  exposed-modules:   Math.Programming.Glpk.Header
  extra-libraries:   glpk
  build-depends:     base            <5
                   , derive-storable >=0.3

test-suite glpk-headers-haskell-test-suite
  default-language:  Haskell2010
  type:              exitcode-stdio-1.0
  main-is:           Spec.hs
  hs-source-dirs:    test
  ghc-options:       -threaded -with-rtsopts=-N
  other-modules:     Math.Programming.Glpk.HeadersSpec
  build-depends:     glpk-headers
                   , base  <5
                   , hspec >=2.8 && <3