nixpkgs/pkgs/applications/graphics/ktikz/default.nix

72 lines
2 KiB
Nix
Raw Normal View History

2017-02-19 11:25:33 +00:00
{ stdenv, fetchFromGitHub, gettext, poppler_qt5, qt5 , pkgconfig }:
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
# Warning: You will also need a working pdflatex installation containing
# at least auctex and pgf.
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00: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 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
stdenv.mkDerivation rec {
version = "unstable-20161122";
name = "qtikz-${version}";
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
src = fetchFromGitHub {
owner = "fhackenberger";
repo = "ktikz";
rev = "be66c8b1ff7e6b791b65af65e83c4926f307cf5a";
sha256 = "15jx53sjlnky4yg3ry1i1c29g28v1jbbvhbz66h7a49pfxa40fj3";
};
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
meta = with stdenv.lib; {
description = "Editor for the TikZ language";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.layus ];
};
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
conf = ''
# installation prefix:
PREFIX = @out@
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
# install desktop file here (*nix only):
DESKTOP_INSTALL_DIR = @out@/share/applications
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
# install mimetype here:
MIME_INSTALL_DIR = @out@/share/mime/packages
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
# install doc here:
MAN_INSTALL_DIR = @out@/share/man
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
CONFIG -= debug
CONFIG += release
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
# qmake command:
QMAKECOMMAND = qmake
# lrelease command:
LRELEASECOMMAND = lrelease
# qcollectiongenerator command:
#QCOLLECTIONGENERATORCOMMAND = qcollectiongenerator
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
# TikZ documentation default file path:
TIKZ_DOCUMENTATION_DEFAULT = @out@/share/doc/texmf/pgf/pgfmanual.pdf.gz
'';
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
# 1. Configuration is done by overwriting qtikzconfig.pri
# 2. Recent Qt removed QString::fromAscii in favor of QString::fromLatin1
patchPhase = ''
echo "$conf" | sed "s!@out@!$out!g" > qmake/qtikzconfig.pri
find -name "*.cpp" -exec sed -i s/fromAscii/fromLatin1/g "{}" \;
'';
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
configurePhase = ''
qmake PREFIX="$out" ./qtikz.pro
'';
2015-05-31 09:38:18 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gettext qt5.full poppler_qt5 ];
2015-05-31 09:38:18 +00:00
2017-02-19 11:25:33 +00:00
enableParallelBuilding = true;
}
2015-05-31 09:38:18 +00:00