mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
muparserx: init at 4.0.8
This commit is contained in:
parent
59e13f65fb
commit
1e8b74f393
42
pkgs/development/libraries/muparserx/default.nix
Normal file
42
pkgs/development/libraries/muparserx/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -14317,6 +14317,8 @@ in
|
||||
inherit (darwin.stubs) setfile;
|
||||
};
|
||||
|
||||
muparserx = callPackage ../development/libraries/muparserx { };
|
||||
|
||||
mutest = callPackage ../development/libraries/mutest { };
|
||||
|
||||
mygpoclient = pythonPackages.mygpoclient;
|
||||
|
Loading…
Reference in New Issue
Block a user