From 3e651ac90d7c8816521c74214816780e38e5455c Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Wed, 5 Jun 2019 16:13:34 +0200 Subject: qtikz: unstable-20161122 -> 0.12 --- pkgs/applications/graphics/ktikz/default.nix | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'pkgs/applications/graphics/ktikz') diff --git a/pkgs/applications/graphics/ktikz/default.nix b/pkgs/applications/graphics/ktikz/default.nix index 25abcd9d41d7..5dc2dc47da4b 100644 --- a/pkgs/applications/graphics/ktikz/default.nix +++ b/pkgs/applications/graphics/ktikz/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchFromGitHub, gettext, poppler, qt5 , pkgconfig }: +{ stdenv, fetchFromGitHub, fetchurl +, gettext, poppler, qt5 , pkgconfig }: # Warning: You will also need a working pdflatex installation containing # at least auctex and pgf. @@ -8,16 +9,21 @@ # See historical versions of this file for building ktikz with KDE4. stdenv.mkDerivation rec { - version = "unstable-20161122"; + version = "0.12"; name = "qtikz-${version}"; src = fetchFromGitHub { owner = "fhackenberger"; repo = "ktikz"; - rev = "be66c8b1ff7e6b791b65af65e83c4926f307cf5a"; - sha256 = "15jx53sjlnky4yg3ry1i1c29g28v1jbbvhbz66h7a49pfxa40fj3"; + rev = version; + sha256 = "1s83x8r2yi64wc6ah2iz09dj3qahy0fkxx6cfgpkavjw9x0j0582"; }; + patches = [ (fetchurl { + url = "https://github.com/fhackenberger/ktikz/commit/972685a406517bb85eb561f2c8e26f029eacd7db.patch"; + sha256 = "16jwsl18marfw5m888vwxdd1h7cqa37rkfqgirzdliacb1cr4f58"; + })]; + meta = with stdenv.lib; { description = "Editor for the TikZ language"; license = licenses.gpl2; @@ -53,17 +59,15 @@ stdenv.mkDerivation rec { ''; # 1. Configuration is done by overwriting qtikzconfig.pri - # 2. Recent Qt removed QString::fromAscii in favor of QString::fromLatin1 - patchPhase = '' + postPatch = '' echo "$conf" | sed "s!@out@!$out!g" > qmake/qtikzconfig.pri - find -name "*.cpp" -exec sed -i s/fromAscii/fromLatin1/g "{}" \; ''; configurePhase = '' qmake PREFIX="$out" ./qtikz.pro ''; - nativeBuildInputs = [ pkgconfig ]; + nativeBuildInputs = [ pkgconfig qt5.qttools ]; buildInputs = [ gettext qt5.full poppler ]; enableParallelBuilding = true; -- cgit 1.4.1