Merge pull request #137521 from SuperSandro2000/openems

openems: fix eval
This commit is contained in:
Sandro
2021-09-12 15:06:31 +02:00
committed by GitHub
2 changed files with 5 additions and 6 deletions
@@ -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";
+3 -1
View File
@@ -31210,7 +31210,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 { };