1{ fetchurl, stdenv }:
2
3stdenv.mkDerivation rec {
4 name = "glpk-4.52.1";
5
6 src = fetchurl {
7 url = "mirror://gnu/glpk/${name}.tar.gz";
8 sha256 = "0nz9ngmx23c8gbjr8l8ygnfaanxj2mwbl8awpg630bgrkxdnhc9j";
9 };
10
11 doCheck = true;
12
13 meta = {
14 description = "The GNU Linear Programming Kit";
15
16 longDescription =
17 '' The GNU Linear Programming Kit is intended for solving large
18 scale linear programming problems by means of the revised
19 simplex method. It is a set of routines written in the ANSI C
20 programming language and organized in the form of a library.
21 '';
22
23 homepage = http://www.gnu.org/software/glpk/;
24 license = stdenv.lib.licenses.gpl3Plus;
25
26 maintainers = [ stdenv.lib.maintainers.bjg ];
27 platforms = stdenv.lib.platforms.all;
28 };
29}