2015-12-20 03:45:37 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper
|
2016-04-16 23:50:41 +00:00
|
|
|
, qtbase, makeQtWrapper, qtquickcontrols, qtscript, qtdeclarative, qmakeHook
|
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
|
2016-09-05 18:43:00 +00:00
|
|
|
baseVersion = "4.1";
|
|
|
|
revision = "0";
|
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";
|
2016-09-05 18:43:00 +00:00
|
|
|
sha256 = "00xlzw01ngza54ssmwz2ryahjlrbniy2q3p174xri1pxvcih4b21";
|
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
|
|
|
|
2016-09-05 18:43:00 +00:00
|
|
|
nativeBuildInputs = [ qmakeHook makeQtWrapper 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
|
|
|
|
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__
|
2016-04-16 23:50:41 +00:00
|
|
|
wrapQtProgram $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.
|
|
|
|
'';
|
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
|
|
|
};
|
|
|
|
}
|