67 lines
1.9 KiB
Nix
67 lines
1.9 KiB
Nix
{ stdenv, fetchurl, makeWrapper
|
|
, qtbase, makeQtWrapper, qtquickcontrols, qtscript, qtdeclarative, qmakeHook
|
|
, withDocumentation ? false
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
baseVersion = "4.2";
|
|
revision = "1";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qtcreator-${version}";
|
|
version = "${baseVersion}.${revision}";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.gz";
|
|
sha256 = "0f2slaf579q2anflf524lbhmpwrwy3hzjfxzs10n44r7s7yc4dr5";
|
|
};
|
|
|
|
buildInputs = [ qtbase qtscript qtquickcontrols qtdeclarative ];
|
|
|
|
nativeBuildInputs = [ qmakeHook makeQtWrapper makeWrapper ];
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildFlags = optional withDocumentation "docs";
|
|
|
|
installFlags = [ "INSTALL_ROOT=$(out)" ] ++ optional withDocumentation "install_docs";
|
|
|
|
preBuild = optional withDocumentation ''
|
|
ln -s ${qtbase}/share/doc $NIX_QT5_TMP/share
|
|
'';
|
|
|
|
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__
|
|
wrapQtProgram $out/bin/qtcreator
|
|
'';
|
|
|
|
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 maintainers.bbenoist ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|