mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
commit
a0a1e5e105
@ -1,13 +1,33 @@
|
||||
{ fetchurl, stdenv }:
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
# Excerpt from glpk's INSTALL file:
|
||||
# This feature allows the exact simplex solver to use the GNU MP
|
||||
# bignum library. If it is disabled, the exact simplex solver uses the
|
||||
# GLPK bignum module, which provides the same functionality as GNU MP,
|
||||
# however, it is much less efficient.
|
||||
, withGmp ? true
|
||||
, gmp
|
||||
}:
|
||||
|
||||
assert withGmp -> gmp != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "glpk-4.65";
|
||||
version = "4.65";
|
||||
name = "glpk-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/glpk/${name}.tar.gz";
|
||||
sha256 = "040sfaa9jclg2nqdh83w71sv9rc1sznpnfiripjdyr48cady50a2";
|
||||
};
|
||||
|
||||
buildInputs = stdenv.lib.optionals withGmp [
|
||||
gmp
|
||||
];
|
||||
|
||||
configureFlags = stdenv.lib.optionals withGmp [
|
||||
"--with-gmp"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
@ -23,7 +43,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://www.gnu.org/software/glpk/;
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.bjg ];
|
||||
maintainers = with stdenv.lib.maintainers; [ bjg ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user