3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
463 B
Nix
16 lines
463 B
Nix
{ cabal, deepseq, glpk, mtl }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "glpk-hs";
|
|
version = "0.3.4";
|
|
sha256 = "0wyasd0dqi5nnh52lx980vnyhm0rwib0sd7qnpj4s9hq8rn994cm";
|
|
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 ];
|
|
};
|
|
})
|