mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
qt-4.8: Add a developerBuild option
This option configures qmake with the -developer-build option. For example, this tells Qt installer to also install Qt's private headers. See http://doc.qt.digia.com/qt/configure-options.html for more.
This commit is contained in:
parent
1a59276a64
commit
a40d115a62
@ -9,6 +9,7 @@
|
||||
, buildWebkit ? true
|
||||
, flashplayerFix ? false, gdk_pixbuf
|
||||
, gtkStyle ? false, libgnomeui, gtk, GConf, gnome_vfs
|
||||
, developerBuild ? false
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
@ -74,6 +75,7 @@ stdenv.mkDerivation rec {
|
||||
-nomake demos -nomake examples -nomake docs
|
||||
|
||||
-no-phonon ${if buildWebkit then "" else "-no"}-webkit ${if buildMultimedia then "" else "-no"}-multimedia -audio-backend
|
||||
${if developerBuild then "-developer-build" else ""}
|
||||
'';
|
||||
|
||||
propagatedBuildInputs =
|
||||
|
Loading…
Reference in New Issue
Block a user