nixpkgs/pkgs/development/qtcreator/default.nix

63 lines
1.8 KiB
Nix
Raw Normal View History

2015-12-20 03:45:37 +00:00
{ stdenv, fetchurl, makeWrapper
2016-04-16 23:50:41 +00:00
, qtbase, makeQtWrapper, qtquickcontrols, qtscript, qtdeclarative, qmakeHook
2015-12-20 03:45:37 +00:00
, withDocumentation ? false
}:
with stdenv.lib;
let
2016-01-16 00:19:42 +00:00
baseVersion = "3.6";
revision = "1";
version = "${baseVersion}.${revision}";
in
stdenv.mkDerivation rec {
2015-08-24 04:50:17 +00:00
name = "qtcreator-${version}";
src = fetchurl {
url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.gz";
sha256 = "1qjxy5l76dij3wqakd66prn1i0k1gd3gi4cv38bivk9j0gw12dp5";
};
2015-12-20 03:45:37 +00:00
buildInputs = [ makeWrapper qtbase qtscript qtquickcontrols qtdeclarative ];
2016-04-16 23:50:41 +00:00
nativeBuildInputs = [ qmakeHook makeQtWrapper ];
doCheck = false;
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";
2014-08-02 18:37:39 +00:00
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__
2016-04-16 23:50:41 +00:00
wrapQtProgram $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.
'';
2015-08-24 04:50:17 +00:00
homepage = "https://wiki.qt.io/Category:Tools::QtCreator";
license = "LGPL";
2015-08-24 04:50:17 +00:00
maintainers = [ maintainers.akaWolf maintainers.bbenoist ];
platforms = platforms.all;
};
}