muparserx: init at 4.0.8

This commit is contained in:
Drew Risinger 2020-08-10 18:31:36 -04:00 committed by Jon
parent 59e13f65fb
commit 1e8b74f393
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "muparserx";
version = "4.0.8";
src = fetchFromGitHub {
owner = "beltoforion";
repo = "muparserx";
rev = "v${version}";
sha256 = "097pkdffv0phr0345hy06mjm5pfy259z13plsvbxvcmds80wl48v";
};
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 stdenv.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 ];
};
}

View file

@ -14317,6 +14317,8 @@ in
inherit (darwin.stubs) setfile;
};
muparserx = callPackage ../development/libraries/muparserx { };
mutest = callPackage ../development/libraries/mutest { };
mygpoclient = pythonPackages.mygpoclient;