cplex: move defaults to package file
This commit is contained in:
parent
f37effbc99
commit
88ca6dd78a
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, makeWrapper, openjdk, gtk2, xorg, glibcLocales, releasePath }:
|
||||
{ stdenv, makeWrapper, openjdk, gtk2, xorg, glibcLocales, releasePath ? null }:
|
||||
|
||||
# To use this package, you need to download your own cplex installer from IBM
|
||||
# and override the releasePath attribute to point to the location of the file.
|
||||
|
|
|
@ -1156,7 +1156,7 @@ in
|
|||
|
||||
coprthr = callPackage ../development/libraries/coprthr { };
|
||||
|
||||
cplex = callPackage ../applications/science/math/cplex { releasePath = config.cplex.releasePath or null; };
|
||||
cplex = callPackage ../applications/science/math/cplex (config.cplex or {});
|
||||
|
||||
cpulimit = callPackage ../tools/misc/cpulimit { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue