2014-08-02 20:21:03 +02:00
|
|
|
{ stdenv, fetchurl, qtLib, sdkBuild ? false, withDocumentation ? true }:
|
2013-09-30 15:15:25 +02:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-10-16 17:30:56 +02:00
|
|
|
|
|
|
|
let
|
2014-09-16 20:27:43 +02:00
|
|
|
baseVersion = "3.2";
|
2014-10-14 18:00:57 +02:00
|
|
|
revision = "1";
|
2013-06-01 00:05:29 +02:00
|
|
|
version = "${baseVersion}.${revision}";
|
2012-10-16 17:30:56 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-09-30 15:15:25 +02:00
|
|
|
# The package name depends on wether we are just building the QtCreator package or the whole Qt SDK
|
|
|
|
# If we are building the QtCreator package: qtcreator-version
|
|
|
|
# If we are building the QtSDK package, the Qt version is also included: qtsdk-version-qt-version
|
|
|
|
name = "qt${if sdkBuild then "sdk" else "creator"}-${version}"
|
|
|
|
+ optionalString sdkBuild "-qt-${qtLib.version}";
|
2012-10-16 17:30:56 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-05-14 17:46:33 +02:00
|
|
|
url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.gz";
|
2014-10-14 18:00:57 +02:00
|
|
|
sha256 = "0kp7czn9mzncdpq8bx15s3sy13g4xlcdz7y7zy0s9350g4ijs8fx";
|
2012-10-16 17:30:56 +02:00
|
|
|
};
|
|
|
|
|
2013-09-30 15:15:25 +02:00
|
|
|
# This property can be used in a nix development environment to refer to the Qt package
|
|
|
|
# eg: export QTDIR=${qtSDK.qt}
|
|
|
|
qt = qtLib;
|
|
|
|
|
|
|
|
# We must only propagate Qt (including qmake) when building the QtSDK
|
|
|
|
propagatedBuildInputs = if sdkBuild then [ qtLib ] else [];
|
|
|
|
buildInputs = if sdkBuild == false then [ qtLib ] else [];
|
2012-10-16 17:30:56 +02:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-11-27 13:54:44 +01:00
|
|
|
preConfigure = ''
|
2013-09-30 15:15:25 +02:00
|
|
|
qmake -spec linux-g++ "QT_PRIVATE_HEADERS=${qtLib}/include" qtcreator.pro
|
2012-11-27 13:54:44 +01:00
|
|
|
'';
|
|
|
|
|
2014-08-02 20:21:03 +02:00
|
|
|
buildFlags = optionalString withDocumentation " docs";
|
|
|
|
|
|
|
|
installFlags = "INSTALL_ROOT=$(out)"
|
|
|
|
+ optionalString withDocumentation " install_docs";
|
2012-10-16 17:30:56 +02:00
|
|
|
|
2014-08-02 20:37:39 +02: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__
|
|
|
|
'';
|
|
|
|
|
2012-10-16 17:30:56 +02:00
|
|
|
meta = {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Cross-platform IDE tailored to the needs of Qt developers";
|
2012-10-16 17:30:56 +02:00
|
|
|
longDescription = ''
|
2013-10-06 11:49:53 +02: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.
|
|
|
|
'';
|
2012-10-16 17:30:56 +02:00
|
|
|
homepage = "http://qt-project.org/wiki/Category:Tools::QtCreator";
|
|
|
|
license = "LGPL";
|
2013-09-30 15:15:25 +02:00
|
|
|
maintainers = [ maintainers.bbenoist ];
|
|
|
|
platforms = platforms.all;
|
2012-10-16 17:30:56 +02:00
|
|
|
};
|
|
|
|
}
|