2015-12-20 03:45:37 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper
|
2017-05-17 19:26:11 +00:00
|
|
|
, qtbase, qtquickcontrols, qtscript, qtdeclarative, qmake
|
2015-12-20 03:45:37 +00:00
|
|
|
, withDocumentation ? false
|
|
|
|
}:
|
2013-09-30 13:15:25 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-10-16 15:30:56 +00:00
|
|
|
|
|
|
|
let
|
2018-07-17 09:45:56 +00:00
|
|
|
baseVersion = "4.6";
|
|
|
|
revision = "2";
|
2012-10-16 15:30:56 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-08-24 04:50:17 +00:00
|
|
|
name = "qtcreator-${version}";
|
2016-12-29 19:30:05 +00:00
|
|
|
version = "${baseVersion}.${revision}";
|
2012-10-16 15:30:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-06-18 09:36:41 +00:00
|
|
|
url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.xz";
|
2018-07-17 09:45:56 +00:00
|
|
|
sha256 = "1k23i1qsw6d06sy7g0vd699rbvwv6vbw211fy0nn0705a5zndbxv";
|
2012-10-16 15:30:56 +00:00
|
|
|
};
|
|
|
|
|
2016-09-05 18:43:00 +00:00
|
|
|
buildInputs = [ qtbase qtscript qtquickcontrols qtdeclarative ];
|
2012-10-16 15:30:56 +00:00
|
|
|
|
2017-05-17 19:26:11 +00:00
|
|
|
nativeBuildInputs = [ qmake makeWrapper ];
|
2016-04-16 23:50:41 +00:00
|
|
|
|
2016-09-06 11:59:03 +00:00
|
|
|
doCheck = true;
|
2012-10-16 15:30:56 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-04-16 23:50:41 +00:00
|
|
|
buildFlags = optional withDocumentation "docs";
|
2014-08-02 18:21:03 +00:00
|
|
|
|
2016-04-16 23:50:41 +00:00
|
|
|
installFlags = [ "INSTALL_ROOT=$(out)" ] ++ optional withDocumentation "install_docs";
|
2012-10-16 15:30:56 +00:00
|
|
|
|
2018-01-04 04:04:03 +00:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace src/plugins/plugins.pro \
|
|
|
|
--replace '$$[QT_INSTALL_QML]/QtQuick/Controls' '${qtquickcontrols}/${qtbase.qtQmlPrefix}/QtQuick/Controls'
|
|
|
|
'';
|
|
|
|
|
2016-12-29 19:30:05 +00:00
|
|
|
preBuild = optional withDocumentation ''
|
2017-09-27 00:10:16 +00:00
|
|
|
ln -s ${getLib qtbase}/$qtDocPrefix $NIX_QT5_TMP/share
|
2016-12-29 19:30:05 +00:00
|
|
|
'';
|
|
|
|
|
2014-08-02 18:37:39 +00:00
|
|
|
postInstall = ''
|
2017-06-18 09:36:41 +00:00
|
|
|
substituteInPlace $out/share/applications/org.qt-project.qtcreator.desktop \
|
|
|
|
--replace "Exec=qtcreator" "Exec=$out/bin/qtcreator"
|
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.
|
|
|
|
'';
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://wiki.qt.io/Category:Tools::QtCreator;
|
2012-10-16 15:30:56 +00:00
|
|
|
license = "LGPL";
|
2017-03-23 02:02:09 +00:00
|
|
|
maintainers = [ maintainers.akaWolf ];
|
2017-12-07 14:51:57 +00:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2012-10-16 15:30:56 +00:00
|
|
|
};
|
|
|
|
}
|