2019-06-06 08:55:02 +02:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch
|
2019-07-05 17:42:08 +02:00
|
|
|
, pkgconfig, wrapQtAppsHook
|
2019-06-05 23:20:44 +02:00
|
|
|
, poppler, qt5, gnuplot
|
|
|
|
}:
|
2015-05-31 11:38:18 +02:00
|
|
|
|
2017-02-19 12:25:33 +01:00
|
|
|
# This package only builds ktikz without KDE integration because KDE4 is
|
|
|
|
# deprecated and upstream does not (yet ?) support KDE5.
|
|
|
|
# See historical versions of this file for building ktikz with KDE4.
|
2015-05-31 11:38:18 +02:00
|
|
|
|
2017-02-19 12:25:33 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-05 16:13:34 +02:00
|
|
|
version = "0.12";
|
2019-06-05 23:20:44 +02:00
|
|
|
pname = "qtikz";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Editor for the TikZ language";
|
|
|
|
homepage = "https://github.com/fhackenberger/ktikz";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.layus ];
|
2019-06-06 08:53:18 +02:00
|
|
|
longDescription = ''
|
2019-06-05 23:20:44 +02:00
|
|
|
You will also need a working *tex installation in your PATH, containing at least `preview` and `pgf`.
|
|
|
|
'';
|
|
|
|
};
|
2015-05-31 11:38:18 +02:00
|
|
|
|
2017-02-19 12:25:33 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fhackenberger";
|
|
|
|
repo = "ktikz";
|
2019-06-05 16:13:34 +02:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1s83x8r2yi64wc6ah2iz09dj3qahy0fkxx6cfgpkavjw9x0j0582";
|
2017-02-19 12:25:33 +01:00
|
|
|
};
|
2015-05-31 11:38:18 +02:00
|
|
|
|
2019-06-06 08:55:02 +02:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/fhackenberger/ktikz/commit/972685a406517bb85eb561f2c8e26f029eacd7db.patch";
|
2019-06-06 11:51:21 +02:00
|
|
|
sha256 = "13z40rcd4m4n088v7z2ns17lnpn0z3rzp31lsamic3qdcwjwa5k8";
|
2019-06-06 08:55:02 +02:00
|
|
|
})
|
|
|
|
];
|
2019-06-05 16:13:34 +02:00
|
|
|
|
2019-07-05 17:42:08 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig qt5.qttools qt5.qmake wrapQtAppsHook ];
|
2019-06-05 23:20:44 +02:00
|
|
|
QT_PLUGIN_PATH = "${qt5.qtbase}/${qt5.qtbase.qtPluginPrefix}";
|
2015-05-31 11:38:18 +02:00
|
|
|
|
2019-06-05 23:20:44 +02:00
|
|
|
buildInputs = [ qt5.qtbase poppler ];
|
|
|
|
enableParallelBuilding = true;
|
2015-05-31 11:38:18 +02:00
|
|
|
|
2019-06-05 23:20:44 +02:00
|
|
|
qmakeFlags = [
|
|
|
|
"DESKTOP_INSTALL_DIR=${placeholder "out"}/share/applications"
|
|
|
|
"MIME_INSTALL_DIR=${placeholder "out"}/share/mime/packages"
|
|
|
|
# qcollectiongenerator does no more exist in `qt5.qttools`.
|
|
|
|
# It was merged with qhelpgenerator at some point.
|
|
|
|
"QCOLLECTIONGENERATORCOMMAND=qhelpgenerator"
|
|
|
|
];
|
|
|
|
|
2019-07-05 17:42:08 +02:00
|
|
|
qtWrapperArgs = [ ''--prefix PATH : "${gnuplot}/bin"'' ];
|
2017-02-19 12:25:33 +01:00
|
|
|
}
|