libqalculate: 5.8.2 -> 5.9.0

Diff: https://github.com/qalculate/libqalculate/compare/v5.8.2...v5.9.0

Particularly, see: https://github.com/Qalculate/libqalculate/pull/869
for dropping `intltool`.
This commit is contained in:
Doron Behar
2026-01-20 01:59:32 +02:00
parent 68c13d95ac
commit d76ed3ea14
+2 -8
View File
@@ -2,7 +2,6 @@
lib,
stdenv,
fetchFromGitHub,
intltool,
pkg-config,
doxygen,
autoreconfHook,
@@ -27,13 +26,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "libqalculate";
version = "5.8.2";
version = "5.9.0";
src = fetchFromGitHub {
owner = "qalculate";
repo = "libqalculate";
tag = "v${finalAttrs.version}";
hash = "sha256-oA4AcsnyBhH6YtyHAb5Duzf5vGhY3tJT0Su3C09xOPU=";
hash = "sha256-BhpqNTFkghb+Qg/oEKfascvo5Q5BKXjzCOL8S7OE4Kc=";
};
outputs = [
@@ -43,7 +42,6 @@ stdenv.mkDerivation (finalAttrs: {
];
nativeBuildInputs = [
intltool
pkg-config
autoreconfHook
doxygen
@@ -65,10 +63,6 @@ stdenv.mkDerivation (finalAttrs: {
];
enableParallelBuilding = true;
preConfigure = ''
intltoolize -f
'';
postPatch = lib.optionalString (gnuplotBinary != "") ''
substituteInPlace libqalculate/Calculator-plot.cc \
--replace-fail 'commandline = "gnuplot"' 'commandline = "${gnuplotBinary}"' \