nixpkgs/pkgs/development/qtcreator/default.nix

56 lines
1.6 KiB
Nix
Raw Normal View History

2015-12-20 03:45:37 +00:00
{ stdenv, fetchurl, makeWrapper
2017-05-17 19:26:11 +00:00
, qtbase, qtquickcontrols, qtscript, qtdeclarative, qmake
2015-12-20 03:45:37 +00:00
, withDocumentation ? false
}:
with stdenv.lib;
let
baseVersion = "4.3";
2017-07-01 17:47:28 +00:00
revision = "1";
in
stdenv.mkDerivation rec {
2015-08-24 04:50:17 +00:00
name = "qtcreator-${version}";
2016-12-29 19:30:05 +00:00
version = "${baseVersion}.${revision}";
src = fetchurl {
url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.xz";
2017-07-01 17:47:28 +00:00
sha256 = "1bd4wxvp8b5imsmrbnn8rkiln38g74g2545x07pmihc8z51qh2h6";
};
2016-09-05 18:43:00 +00:00
buildInputs = [ qtbase qtscript qtquickcontrols qtdeclarative ];
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ qmake makeWrapper ];
2016-04-16 23:50:41 +00:00
2016-09-06 11:59:03 +00:00
doCheck = true;
enableParallelBuilding = true;
2016-04-16 23:50:41 +00:00
buildFlags = optional withDocumentation "docs";
2016-04-16 23:50:41 +00:00
installFlags = [ "INSTALL_ROOT=$(out)" ] ++ optional withDocumentation "install_docs";
2016-12-29 19:30:05 +00:00
preBuild = optional withDocumentation ''
ln -s ${qtbase}/$qtDocPrefix $NIX_QT5_TMP/share
2016-12-29 19:30:05 +00:00
'';
2014-08-02 18:37:39 +00:00
postInstall = ''
substituteInPlace $out/share/applications/org.qt-project.qtcreator.desktop \
--replace "Exec=qtcreator" "Exec=$out/bin/qtcreator"
2014-08-02 18:37:39 +00: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 = platforms.all;
};
}