b127000fa8
Semi-automatic update. These checks were done: - built on NixOS - ran `/nix/store/ra315prmwpsflq6fwq5glpxq0zqa1v3y-glpk-4.65/bin/glpsol -h` got 0 exit code - ran `/nix/store/ra315prmwpsflq6fwq5glpxq0zqa1v3y-glpk-4.65/bin/glpsol --help` got 0 exit code - ran `/nix/store/ra315prmwpsflq6fwq5glpxq0zqa1v3y-glpk-4.65/bin/glpsol -v` and found version 4.65 - ran `/nix/store/ra315prmwpsflq6fwq5glpxq0zqa1v3y-glpk-4.65/bin/glpsol --version` and found version 4.65 - ran `/nix/store/ra315prmwpsflq6fwq5glpxq0zqa1v3y-glpk-4.65/bin/glpsol -h` and found version 4.65 - ran `/nix/store/ra315prmwpsflq6fwq5glpxq0zqa1v3y-glpk-4.65/bin/glpsol --help` and found version 4.65 - found 4.65 with grep in /nix/store/ra315prmwpsflq6fwq5glpxq0zqa1v3y-glpk-4.65 - found 4.65 in filename of file in /nix/store/ra315prmwpsflq6fwq5glpxq0zqa1v3y-glpk-4.65
29 lines
801 B
Nix
29 lines
801 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "glpk-4.65";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/glpk/${name}.tar.gz";
|
|
sha256 = "040sfaa9jclg2nqdh83w71sv9rc1sznpnfiripjdyr48cady50a2";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|