2013-09-30 15:15:25 +02:00
|
|
|
{ stdenv, fetchurl, qtLib, sdkBuild ? false }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-10-16 17:30:56 +02:00
|
|
|
|
|
|
|
let
|
2013-07-15 11:15:34 +02:00
|
|
|
baseVersion = "2.8";
|
2013-09-30 15:00:41 +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 {
|
2013-06-01 00:05:29 +02:00
|
|
|
url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-${version}-src.tar.gz";
|
2013-09-30 15:00:41 +02:00
|
|
|
sha256 = "d5ae007a297a4288d0e95fd605edbfb8aee80f6788c7a6cfb9cb297f50c364b9";
|
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
|
|
|
'';
|
|
|
|
|
2012-10-16 17:30:56 +02:00
|
|
|
installFlags = "INSTALL_ROOT=$(out)";
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|