Merge pull request #317075 from ConnorBaker/fix/labplot

This commit is contained in:
Sandro 2024-06-05 01:17:35 +02:00 committed by GitHub
commit 6ddceff8df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +1,6 @@
{ lib
, stdenv
, fetchpatch
, fetchurl
, cmake
, extra-cmake-modules
@ -54,6 +55,14 @@ stdenv.mkDerivation rec {
"-DENABLE_VECTOR_BLF=OFF"
];
patches = [
(fetchpatch {
name = "matio-fix-compilation-for-latest-version-1.5.27.patch";
url = "https://github.com/KDE/labplot/commit/d6142308ffa492d9f7cea00fad3b4cd1babfd00c.patch";
hash = "sha256-qD5jj6GxBKbQezKJb1Z8HnwFO84WJBGQDawS/6o/wHE=";
})
];
nativeBuildInputs = [
cmake
extra-cmake-modules