Merge pull request #225265 from NickCao/eigenmath

eigenmath: unstable-2023-03-05 -> unstable-2023-04-07
This commit is contained in:
Nick Cao 2023-04-12 11:45:15 +08:00 committed by GitHub
commit 47f3cca66d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,28 +1,30 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, buildPackages
, unstableGitUpdater
}:
stdenv.mkDerivation rec {
pname = "eigenmath";
version = "unstable-2023-03-05";
version = "unstable-2023-04-07";
src = fetchFromGitHub {
owner = "georgeweigt";
repo = pname;
rev = "633d5b0b2f2b87b6377bc4f715604f79b17aab66";
hash = "sha256-5LOSyfeGavWesAR7jqd37Z845iyNstr/cJdQiWHlIPg=";
rev = "dd6a01da6e7f52a15af5bd584e93edf1a77bc04b";
hash = "sha256-GZkC/Tvep7fL5nJyz0ZN7z0lUhGX4EJlXVswwAyegUE=";
};
patches = [
# treewide: use $(CC) instead of hardcoding gcc
# https://github.com/georgeweigt/eigenmath/pull/18
(fetchpatch {
url = "https://github.com/georgeweigt/eigenmath/commit/70551b3624ea25911f6de608c9ee9833885ab0b8.patch";
hash = "sha256-g2crXOlC5SM1vAq87Vg/2zWMvx9DPFWEPaTrrPbcDZ0=";
})
];
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
@ -30,6 +32,12 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
doCheck = true;
passthru = {
updateScript = unstableGitUpdater { };
};
meta = with lib;{
description = "Computer algebra system written in C";
homepage = "https://georgeweigt.github.io";