2015-08-24 04:50:17 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper, qtLib, withDocumentation ? false }:
|
2013-09-30 13:15:25 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-10-16 15:30:56 +00:00
|
|
|
|
|
|
|
let
|
2015-07-02 06:08:13 +00:00
|
|
|
baseVersion = "3.4";
|
|
|
|
revision = "2";
|
2013-05-31 22:05:29 +00:00
|
|
|
version = "${baseVersion}.${revision}";
|
2012-10-16 15:30:56 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-08-24 04:50:17 +00:00
|
|
|
name = "qtcreator-${version}";
|
2012-10-16 15:30:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-05-14 15:46:33 +00:00
|
|
|
url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.gz";
|
2015-07-04 00:38:53 +00:00
|
|
|
sha256 = "1asbfphws0aqs92gjgh0iqzr1911kg51r9al44jxpfk88yazjzgm";
|
2012-10-16 15:30:56 +00:00
|
|
|
};
|
|
|
|
|
2015-08-24 04:50:17 +00:00
|
|
|
buildInputs = [ makeWrapper qtLib.base qtLib.script qtLib.quickcontrols qtLib.declarative ];
|
2012-10-16 15:30:56 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-11-27 12:54:44 +00:00
|
|
|
preConfigure = ''
|
2015-08-24 04:50:17 +00:00
|
|
|
qmake -spec linux-g++ qtcreator.pro
|
2012-11-27 12:54:44 +00:00
|
|
|
'';
|
|
|
|
|
2014-08-02 18:21:03 +00:00
|
|
|
buildFlags = optionalString withDocumentation " docs";
|
|
|
|
|
|
|
|
installFlags = "INSTALL_ROOT=$(out)"
|
|
|
|
+ optionalString withDocumentation " install_docs";
|
2012-10-16 15:30:56 +00:00
|
|
|
|
2014-08-02 18:37:39 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Install desktop file
|
|
|
|
mkdir -p "$out/share/applications"
|
|
|
|
cat > "$out/share/applications/qtcreator.desktop" << __EOF__
|
|
|
|
[Desktop Entry]
|
|
|
|
Exec=$out/bin/qtcreator
|
|
|
|
Name=Qt Creator
|
|
|
|
GenericName=Cross-platform IDE for Qt
|
|
|
|
Icon=QtProject-qtcreator.png
|
|
|
|
Terminal=false
|
|
|
|
Type=Application
|
|
|
|
Categories=Qt;Development;IDE;
|
|
|
|
__EOF__
|
2015-08-24 04:50:17 +00:00
|
|
|
# Wrap the qtcreator binary
|
2015-09-03 14:01:00 +00:00
|
|
|
addToSearchPath QML2_IMPORT_PATH "${qtLib.quickcontrols}/lib/qt5/qml"
|
2015-11-09 17:15:40 +00:00
|
|
|
addToSearchPath QML2_IMPORT_PATH "${qtLib.declarative}/lib/qt5/qml"
|
2015-08-24 04:50:17 +00:00
|
|
|
wrapProgram $out/bin/qtcreator \
|
|
|
|
--prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \
|
|
|
|
--prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \
|
|
|
|
--prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH"
|
2014-08-02 18:37:39 +00:00
|
|
|
'';
|
|
|
|
|
2012-10-16 15:30:56 +00:00
|
|
|
meta = {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Cross-platform IDE tailored to the needs of Qt developers";
|
2012-10-16 15:30:56 +00:00
|
|
|
longDescription = ''
|
2013-10-06 09:49:53 +00:00
|
|
|
Qt Creator is a cross-platform IDE (integrated development environment)
|
|
|
|
tailored to the needs of Qt developers. It includes features such as an
|
|
|
|
advanced code editor, a visual debugger and a GUI designer.
|
|
|
|
'';
|
2015-08-24 04:50:17 +00:00
|
|
|
homepage = "https://wiki.qt.io/Category:Tools::QtCreator";
|
2012-10-16 15:30:56 +00:00
|
|
|
license = "LGPL";
|
2015-08-24 04:50:17 +00:00
|
|
|
maintainers = [ maintainers.akaWolf maintainers.bbenoist ];
|
2013-09-30 13:15:25 +00:00
|
|
|
platforms = platforms.all;
|
2012-10-16 15:30:56 +00:00
|
|
|
};
|
|
|
|
}
|