mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
918 B
Nix
39 lines
918 B
Nix
{ 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 ];
|
|
|
|
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 = "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 ];
|
|
};
|
|
}
|