Add qtcreator-2.5.2
Signed-off-by: Baptist BENOIST <return_0@live.com>
This commit is contained in:
parent
829ad425d3
commit
440656dbd0
2 changed files with 38 additions and 0 deletions
36
pkgs/development/qtcreator/default.nix
Normal file
36
pkgs/development/qtcreator/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ stdenv, fetchurl, qt4 }:
|
||||
|
||||
let
|
||||
version = "2.5.2";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "qtcreator-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://origin.releases.qt-project.org/qtcreator/${version}/qt-creator-${version}-src.tar.gz";
|
||||
md5 = "4a9c09cdf4609753283c31451c84ceb8";
|
||||
};
|
||||
|
||||
buildInputs = [ qt4 ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
preConfigure = "qmake";
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -7608,6 +7608,8 @@ let
|
|||
|
||||
qsynth = callPackage ../applications/audio/qsynth { };
|
||||
|
||||
qtcreator = callPackage ../development/qtcreator { };
|
||||
|
||||
qtpfsgui = callPackage ../applications/graphics/qtpfsgui { };
|
||||
|
||||
qtractor = callPackage ../applications/audio/qtractor { };
|
||||
|
|
Loading…
Reference in a new issue