6602f49495
This reverts commit 741bf840da
.
This reverts the fallout from reverting the major changes.
30 lines
801 B
Nix
30 lines
801 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "glpk-4.56";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/glpk/${name}.tar.gz";
|
|
sha256 = "0syzix6qvpn0fzp08c84c8snansf1cam5vd0dk2w91mz2c85d18h";
|
|
};
|
|
|
|
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 = stdenv.lib.licenses.gpl3Plus;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.bjg ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|