lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 28 lines 591 B view raw
1{ lib 2, pkg-config 3, jre8 4, libuuid 5, openmodelica 6, mkOpenModelicaDerivation 7}: 8 9mkOpenModelicaDerivation rec { 10 pname = "omparser"; 11 omdir = "OMParser"; 12 omdeps = [ openmodelica.omcompiler ]; 13 14 nativeBuildInputs = [ pkg-config ]; 15 16 buildInputs = [ jre8 libuuid ]; 17 18 patches = [ ./Makefile.in.patch ]; 19 20 meta = with lib; { 21 description = "An antlr4-based parser of Modelica files from OpenModelica 22suite"; 23 homepage = "https://openmodelica.org"; 24 license = licenses.gpl3Only; 25 maintainers = with maintainers; [ balodja smironov ]; 26 platforms = platforms.linux; 27 }; 28}