22194538d7
- Qt is now directly overriden in QtCreator's definition. - qt48Full can be used in a development environment to enable access to docs demos and examples. NOTE: It may be required to remove older configuration files located in ~/.config/QtProject and at ~/.config/Trolltech.conf to reconfigure qtcreator with the correct paths. I have found /nix/store/... paths in the following files: $HOME/.config/QtProject/qtcreator/toolchains.xml $HOME/.config/QtProject/qtcreator/qtversion.xml $HOME/.config/QtProject/qtcreator/helpcollection.qhc At the first launch, be sure to check your qtcreator's configuration by selecting Tools->Options. The most important parts are the Kits and QtVersion tabs located in the Build & Run section.
45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ stdenv, fetchurl, qt48 }:
|
|
|
|
let
|
|
baseVersion = "2.7";
|
|
revision = "1";
|
|
version = "${baseVersion}.${revision}";
|
|
qt4_for_qtcreator = qt48.override {
|
|
developerBuild = true;
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qtcreator-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-${version}-src.tar.gz";
|
|
sha256 = "04vn7y3dkk9vi1rsmsxby57mvc2h9n5q842hayq2mdlsax4qnhjv";
|
|
};
|
|
|
|
buildInputs = [ qt4_for_qtcreator ];
|
|
|
|
doCheck = false;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
qmake -spec linux-g++ "QT_PRIVATE_HEADERS=${qt4_for_qtcreator}/include" qtcreator.pro
|
|
'';
|
|
|
|
installFlags = "INSTALL_ROOT=$(out)";
|
|
|
|
meta = {
|
|
description = "Qt Creator is a cross-platform IDE tailored to the needs of Qt developers.";
|
|
longDescription = ''
|
|
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.
|
|
'';
|
|
homepage = "http://qt-project.org/wiki/Category:Tools::QtCreator";
|
|
license = "LGPL";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.bbenoist ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|