2010-04-23 23:15:48 +02:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-06-10 23:52:56 +02:00
|
|
|
name = "glpk-4.44";
|
2010-04-23 23:15:48 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/glpk/${name}.tar.gz";
|
2010-06-10 23:52:56 +02:00
|
|
|
sha256 = "0vby7idacxr4mzj2jrdrawrp91rl135zvnr3al5kdrqy0ik476i8";
|
2010-04-23 23:15:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The GNU Linear Programming Kit";
|
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' The GNU Linear Programming Kit is intended for solving large
|
|
|
|
scale linear programming problems by means of the revised
|
|
|
|
simplex method. It is a set of routines written in the ANSI C
|
|
|
|
programming language and organized in the form of a library.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/glpk/;
|
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.bjg ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|