Merge pull request #137521 from SuperSandro2000/openems

openems: fix eval

authored by

Sandro and committed by
GitHub
0d40f713 93a56230

+5 -6
+2 -5
pkgs/applications/science/electronics/openems/default.nix
··· 15 , withQcsxcad ? true 16 , withMPI ? false 17 , withHyp2mat ? true 18 - , qcsxcad ? null 19 - , hyp2mat ? null 20 }: 21 - 22 - assert withQcsxcad -> qcsxcad != null; 23 - assert withHyp2mat -> hyp2mat != null; 24 25 stdenv.mkDerivation { 26 pname = "openems";
··· 15 , withQcsxcad ? true 16 , withMPI ? false 17 , withHyp2mat ? true 18 + , qcsxcad 19 + , hyp2mat 20 }: 21 22 stdenv.mkDerivation { 23 pname = "openems";
+3 -1
pkgs/top-level/all-packages.nix
··· 31210 31211 ngspice = callPackage ../applications/science/electronics/ngspice { }; 31212 31213 - openems = callPackage ../applications/science/electronics/openems { }; 31214 31215 openroad = libsForQt5.callPackage ../applications/science/electronics/openroad { }; 31216
··· 31210 31211 ngspice = callPackage ../applications/science/electronics/ngspice { }; 31212 31213 + openems = callPackage ../applications/science/electronics/openems { 31214 + qcsxcad = libsForQt5.qcsxcad; 31215 + }; 31216 31217 openroad = libsForQt5.callPackage ../applications/science/electronics/openroad { }; 31218