Trying to fix soqt for qt-4.8

svn path=/nixpkgs/trunk/; revision=32454
This commit is contained in:
Yury G. Kudryashov 2012-02-21 13:52:32 +00:00
parent 6c796fa539
commit 8229dc4357
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ fetchurl, stdenv, coin3d, qt4 }:
{ fetchurl, stdenv, coin3d, qt4, pkgconfig }:
stdenv.mkDerivation rec {
name = "soqt-${version}";
@ -11,6 +11,8 @@ stdenv.mkDerivation rec {
buildInputs = [ coin3d qt4 ];
buildNativeInputs = [ pkgconfig ];
meta = {
homepage = http://www.coin3d.org/;
license = "GPLv2+";

View File

@ -4631,6 +4631,8 @@ let
qt4 = qt47;
};
soqtQt48 = soqt.override { qt4 = qt48; };
speechd = callPackage ../development/libraries/speechd { };
speech_tools = callPackage ../development/libraries/speech-tools {};