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