Merge pull request #226353 from kindrowboat/fix-nasc

nasc: fix compile failure

authored by

Bobby Rong and committed by
GitHub
2abbfae0 893f073f

+2 -1
+2 -1
pkgs/applications/science/math/nasc/default.nix
··· 60 substituteInPlace subprojects/libqalculate/libqalculate/Calculator-plot.cc \ 61 --replace 'commandline = "gnuplot"' 'commandline = "${gnuplot}/bin/gnuplot"' \ 62 --replace '"gnuplot - ' '"${gnuplot}/bin/gnuplot - ' 63 ''; 64 65 passthru = { ··· 80 platforms = platforms.linux; 81 license = licenses.gpl3Plus; 82 mainProgram = "com.github.parnold_x.nasc"; 83 - broken = true; # at 2022-09-23 84 }; 85 }
··· 60 substituteInPlace subprojects/libqalculate/libqalculate/Calculator-plot.cc \ 61 --replace 'commandline = "gnuplot"' 'commandline = "${gnuplot}/bin/gnuplot"' \ 62 --replace '"gnuplot - ' '"${gnuplot}/bin/gnuplot - ' 63 + substituteInPlace subprojects/libqalculate/libqalculate/meson.build \ 64 + --replace "link_with: 'libqalculate_lib_static'" "link_with: libqalculate_lib_static" 65 ''; 66 67 passthru = { ··· 82 platforms = platforms.linux; 83 license = licenses.gpl3Plus; 84 mainProgram = "com.github.parnold_x.nasc"; 85 }; 86 }