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
|
2017-06-18 02:36:41 -07:00
|
|
|
baseVersion = "4.3";
|
2017-07-01 10:47:28 -07:00
|
|
|
revision = "1";
|
2012-10-16 08:30:56 -07:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-08-23 21:50:17 -07:00
|
|
|
name = "qtcreator-${version}";
|
2016-12-29 11:30:05 -08:00
|
|
|
version = "${baseVersion}.${revision}";
|
2012-10-16 08:30:56 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-06-18 02:36:41 -07:00
|
|
|
url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.xz";
|
2017-07-01 10:47:28 -07:00
|
|
|
sha256 = "1bd4wxvp8b5imsmrbnn8rkiln38g74g2545x07pmihc8z51qh2h6";
|
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
|
|
|
|
2016-12-29 11:30:05 -08:00
|
|
|
preBuild = optional withDocumentation ''
|
2017-05-15 04:44:33 -07:00
|
|
|
ln -s ${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.
|
|
|
|
'';
|
2015-08-23 21:50:17 -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 ];
|
2013-09-30 06:15:25 -07:00
|
|
|
platforms = platforms.all;
|
2012-10-16 08:30:56 -07:00
|
|
|
};
|
|
|
|
}
|