53 lines
1.9 KiB
Nix
53 lines
1.9 KiB
Nix
{ stdenv, fetchurl, unzip
|
|
, qt4 ? null, qmake4Hook ? null
|
|
, withQt5 ? false, qtbase ? null, qmakeHook ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qscintilla";
|
|
version = "2.9.4";
|
|
|
|
name = "${pname}-${if withQt5 then "qt5" else "qt4"}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/pyqt/QScintilla2/QScintilla-${version}/QScintilla_gpl-${version}.zip";
|
|
sha256 = "04678skipydx68zf52vznsfmll2v9aahr66g50lcqbr6xsmgr1yi";
|
|
};
|
|
|
|
buildInputs = if withQt5 then [ qtbase ] else [ qt4 ];
|
|
nativeBuildInputs = [ unzip ] ++ (if withQt5 then [ qmakeHook ] else [ qmake4Hook ]);
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
cd Qt4Qt5
|
|
sed -i -e "s,\$\$\\[QT_INSTALL_LIBS\\],$out/lib," \
|
|
-e "s,\$\$\\[QT_INSTALL_HEADERS\\],$out/include/," \
|
|
-e "s,\$\$\\[QT_INSTALL_TRANSLATIONS\\],$out/share/qt/translations," \
|
|
-e "s,\$\$\\[QT_INSTALL_DATA\\],$out/share/qt," \
|
|
qscintilla.pro
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Qt port of the Scintilla text editing library";
|
|
longDescription = ''
|
|
QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor
|
|
control.
|
|
|
|
As well as features found in standard text editing components,
|
|
QScintilla includes features especially useful when editing and
|
|
debugging source code. These include support for syntax styling,
|
|
error indicators, code completion and call tips. The selection
|
|
margin can contain markers like those used in debuggers to
|
|
indicate breakpoints and the current line. Styling choices are
|
|
more open than with many editors, allowing the use of
|
|
proportional fonts, bold and italics, multiple foreground and
|
|
background colours and multiple fonts.
|
|
'';
|
|
homepage = http://www.riverbankcomputing.com/software/qscintilla/intro;
|
|
license = with licenses; [ gpl2 gpl3 ]; # and commercial
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
}
|