{ lib , stdenv , fetchFromGitHub , buildPackages , unstableGitUpdater }: stdenv.mkDerivation rec { pname = "eigenmath"; version = "0-unstable-2024-04-26"; src = fetchFromGitHub { owner = "georgeweigt"; repo = pname; rev = "14a55ff60d078b752033b4ae29d332b04b6e8912"; hash = "sha256-p7wcLmssTqs3LCkZWB9rhCXEc4IVgZJNBvRhS51oH5E="; }; checkPhase = let emulator = stdenv.hostPlatform.emulator buildPackages; in '' runHook preCheck for testcase in selftest1 selftest2; do ${emulator} ./eigenmath "test/$testcase" done runHook postCheck ''; installPhase = '' runHook preInstall install -Dm555 eigenmath "$out/bin/eigenmath" runHook postInstall ''; doCheck = true; passthru = { updateScript = unstableGitUpdater { }; }; meta = with lib;{ description = "Computer algebra system written in C"; mainProgram = "eigenmath"; homepage = "https://georgeweigt.github.io"; license = licenses.bsd2; maintainers = with maintainers; [ nickcao ]; platforms = platforms.unix; }; }