nixpkgs/pkgs/development/tools/qtcreator/default.nix

63 lines
2 KiB
Nix
Raw Normal View History

2015-12-20 04:45:37 +01:00
{ stdenv, fetchurl, makeWrapper
2017-05-17 21:26:11 +02:00
, qtbase, qtquickcontrols, qtscript, qtdeclarative, qmake
2015-12-20 04:45:37 +01:00
, withDocumentation ? false
}:
with stdenv.lib;
let
2018-07-17 11:45:56 +02:00
baseVersion = "4.6";
revision = "2";
in
stdenv.mkDerivation rec {
2015-08-24 06:50:17 +02:00
name = "qtcreator-${version}";
2016-12-29 20:30:05 +01:00
version = "${baseVersion}.${revision}";
src = fetchurl {
url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.xz";
2018-07-17 11:45:56 +02:00
sha256 = "1k23i1qsw6d06sy7g0vd699rbvwv6vbw211fy0nn0705a5zndbxv";
};
2016-09-05 20:43:00 +02:00
buildInputs = [ qtbase qtscript qtquickcontrols qtdeclarative ];
2017-05-17 21:26:11 +02:00
nativeBuildInputs = [ qmake makeWrapper ];
2016-04-17 01:50:41 +02:00
patches = optional (stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64) ./0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch;
2016-09-06 13:59:03 +02:00
doCheck = true;
enableParallelBuilding = true;
2016-04-17 01:50:41 +02:00
buildFlags = optional withDocumentation "docs";
2016-04-17 01:50:41 +02:00
installFlags = [ "INSTALL_ROOT=$(out)" ] ++ optional withDocumentation "install_docs";
preConfigure = ''
substituteInPlace src/plugins/plugins.pro \
--replace '$$[QT_INSTALL_QML]/QtQuick/Controls' '${qtquickcontrols}/${qtbase.qtQmlPrefix}/QtQuick/Controls'
'';
2016-12-29 20:30:05 +01:00
preBuild = optional withDocumentation ''
ln -s ${getLib qtbase}/$qtDocPrefix $NIX_QT5_TMP/share
2016-12-29 20:30:05 +01:00
'';
2014-08-02 20:37:39 +02:00
postInstall = ''
substituteInPlace $out/share/applications/org.qt-project.qtcreator.desktop \
--replace "Exec=qtcreator" "Exec=$out/bin/qtcreator"
2014-08-02 20:37:39 +02:00
'';
meta = {
description = "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 = https://wiki.qt.io/Category:Tools::QtCreator;
license = "LGPL";
maintainers = [ maintainers.akaWolf ];
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" "armv7l-linux" ];
};
}