muparserx 4.0.11 -> 4.0.12 https://github.com/beltoforion/muparserx/releases attrpath: muparserx Checking auto update branch... No auto update branch exists Old version 4.0.11" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , cmake }: stdenv.mkDerivation rec { pname = "muparserx"; version = "4.0.12"; src = fetchFromGitHub { owner = "beltoforion"; repo = "muparserx"; rev = "v${version}"; sha256 = "sha256-rekPXmncNdVX6LvPQP1M2Pzs3pyiCCcLPLnPFiyWJ4s="; }; nativeBuildInputs = [ cmake ]; cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]; doCheck = true; checkPhase = '' echo "***Muparserx self-test***" echo "quit" | ./example > test_result.log cat test_result.log if grep -Fqi "failed" test_result.log; then echo ">=1 muparserx tests failed" exit 1 else echo -e "\nmuparserx tests succeeded" fi ''; meta = with lib; { description = "A C++ Library for Parsing Expressions with Strings, Complex Numbers, Vectors, Matrices and more"; homepage = "https://beltoforion.de/en/muparserx/"; license = licenses.bsd2; maintainers = with maintainers; [ drewrisinger ]; # selftest fails broken = stdenv.isDarwin; }; }