0e7e20042b
Contributed by Brian Gough <bjg@gnu.org>. svn path=/nixpkgs/trunk/; revision=21284
30 lines
793 B
Nix
30 lines
793 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "glpk-4.43";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/glpk/${name}.tar.gz";
|
|
sha256 = "3be5f9c2cc355b39570ddb1b86a2ccc40fb52f81588f953f22c2ed29e3278e27";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|