Add haskell-glpk-hs.

This commit is contained in:
Andres Loeh
2012-07-18 10:07:22 +02:00
parent 10682e5377
commit a6bf9b8bdf
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{ cabal, deepseq, glpk, mtl }:
cabal.mkDerivation (self: {
pname = "glpk-hs";
version = "0.3.2";
sha256 = "0y7imgzcnh6x36m5f6mns5ay1xhxy5p6i5nh16p2ywzjj0padcg8";
buildDepends = [ deepseq mtl ];
extraLibraries = [ glpk ];
meta = {
description = "Comprehensive GLPK linear programming bindings";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})