Add haskell-glpk-hs.
This commit is contained in:
parent
10682e5377
commit
a6bf9b8bdf
15
pkgs/development/libraries/haskell/glpk-hs/default.nix
Normal file
15
pkgs/development/libraries/haskell/glpk-hs/default.nix
Normal 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 ];
|
||||
};
|
||||
})
|
@ -730,6 +730,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
OpenGL = self.OpenGL25;
|
||||
};
|
||||
|
||||
glpkHs = callPackage ../development/libraries/haskell/glpk-hs {};
|
||||
|
||||
GLURaw = callPackage ../development/libraries/haskell/GLURaw {};
|
||||
|
||||
GLUT_2_1_1_2 = callPackage ../development/libraries/haskell/GLUT/2.1.1.2.nix {};
|
||||
|
Loading…
x
Reference in New Issue
Block a user