Merge pull request #243030 from doronbehar/pkg/ipe

ipe: 7.2.26 -> 7.2.27

authored by

Doron Behar and committed by
GitHub
424ed972 e2022dbe

+5 -19
+4 -5
pkgs/applications/graphics/ipe/default.nix
··· 17 17 , wrapQtAppsHook 18 18 , zlib 19 19 , withTeXLive ? true 20 + , buildPackages 20 21 }: 21 22 22 23 stdenv.mkDerivation rec { 23 24 pname = "ipe"; 24 - version = "7.2.26"; 25 + version = "7.2.27"; 25 26 26 27 src = fetchurl { 27 28 url = "https://github.com/otfried/ipe/releases/download/v${version}/ipe-${version}-src.tar.gz"; 28 - sha256 = "sha256-5J0AV5E6SlFrIBfwDZrbJnkDUoVZ0fDH669s2RQ1CqU="; 29 + sha256 = "sha256-wx/bZy8kB7dpZsz58BeRGdS1BzbrIoafgEmLyFg7wZU="; 29 30 }; 30 - patches = [ 31 - ./headers-lookup.patch 32 - ]; 33 31 34 32 nativeBuildInputs = [ pkg-config copyDesktopItems wrapQtAppsHook ]; 35 33 ··· 52 50 "-C src" 53 51 "IPEPREFIX=${placeholder "out"}" 54 52 "LUA_PACKAGE=lua" 53 + "MOC=${buildPackages.qt6Packages.qtbase}/libexec/moc" 55 54 "IPE_NO_SPELLCHECK=1" # qtSpell is not yet packaged 56 55 ]; 57 56
-13
pkgs/applications/graphics/ipe/headers-lookup.patch
··· 1 - diff --git a/src/ipepresenter/Makefile b/src/ipepresenter/Makefile 2 - index ae3664e..f4f74ff 100644 3 - --- a/src/ipepresenter/Makefile 4 - +++ b/src/ipepresenter/Makefile 5 - @@ -8,7 +8,7 @@ include ../common.mak 6 - 7 - TARGET = $(call exe_target,ipepresenter) 8 - 9 - -CXXFLAGS += -I../include -I../ipecanvas -I../ipecairo \ 10 - +CPPFLAGS += -I../include -I../ipecanvas -I../ipecairo \ 11 - $(UI_CFLAGS) $(CAIRO_CFLAGS) $(ZLIB_CFLAGS) 12 - LIBS += -L$(buildlib) -lipecanvas -lipecairo -lipe \ 13 - $(UI_LIBS) $(CAIRO_LIBS) $(ZLIB_LIBS)
+1 -1
pkgs/top-level/all-packages.nix
··· 32511 32511 lua = lua5_1; 32512 32512 }; 32513 32513 32514 - ipe = libsForQt5.callPackage ../applications/graphics/ipe { 32514 + ipe = qt6Packages.callPackage ../applications/graphics/ipe { 32515 32515 ghostscript = ghostscriptX; 32516 32516 texlive = texlive.combine { inherit (texlive) scheme-small; }; 32517 32517 lua5 = lua5_3;