nixpkgs-suyu/pkgs/development/libraries/glpk/default.nix
Eelco Dolstra 741bf840da Revert "Merge pull request #9543 from NixOS/staging.post-15.06"
This reverts commit f61176c539, reversing
changes made to a27ca029ee.

Conflicts:
	pkgs/development/libraries/ncurses/default.nix
2015-10-06 15:24:20 +02:00

29 lines
803 B
Nix

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "glpk-4.52.1";
src = fetchurl {
url = "mirror://gnu/glpk/${name}.tar.gz";
sha256 = "0nz9ngmx23c8gbjr8l8ygnfaanxj2mwbl8awpg630bgrkxdnhc9j";
};
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;
};
}