openems: fix eval

This commit is contained in:
Sandro Jäckel 2021-09-12 14:45:44 +02:00
parent 5544ebe5b7
commit e4a49641ae
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 5 additions and 6 deletions

View File

@ -15,13 +15,10 @@
, withQcsxcad ? true
, withMPI ? false
, withHyp2mat ? true
, qcsxcad ? null
, hyp2mat ? null
, qcsxcad
, hyp2mat
}:
assert withQcsxcad -> qcsxcad != null;
assert withHyp2mat -> hyp2mat != null;
stdenv.mkDerivation {
pname = "openems";
version = "unstable-2020-02-15";

View File

@ -31177,7 +31177,9 @@ with pkgs;
ngspice = callPackage ../applications/science/electronics/ngspice { };
openems = callPackage ../applications/science/electronics/openems { };
openems = callPackage ../applications/science/electronics/openems {
qcsxcad = libsForQt5.qcsxcad;
};
openroad = libsForQt5.callPackage ../applications/science/electronics/openroad { };