phonon: remove qtquick1 input
This commit is contained in:
parent
6011898cb5
commit
05bbe4fa55
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, lib, fetchurl, cmake, mesa, pkgconfig, libpulseaudio
|
{ stdenv, lib, fetchurl, cmake, mesa, pkgconfig, libpulseaudio
|
||||||
, qt4 ? null, extra-cmake-modules ? null, qtbase ? null, qtquick1 ? null, qttools ? null
|
, qt4 ? null, extra-cmake-modules ? null, qtbase ? null, qttools ? null
|
||||||
, debug ? false }:
|
, debug ? false }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
@ -10,7 +10,6 @@ let
|
|||||||
in
|
in
|
||||||
|
|
||||||
assert withQt5 -> qtbase != null;
|
assert withQt5 -> qtbase != null;
|
||||||
assert withQt5 -> qtquick1 != null;
|
|
||||||
assert withQt5 -> qttools != null;
|
assert withQt5 -> qttools != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -31,7 +30,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ mesa libpulseaudio ]
|
[ mesa libpulseaudio ]
|
||||||
++ (if withQt5 then [ qtbase qtquick1 qttools ] else [ qt4 ]);
|
++ (if withQt5 then [ qtbase qttools ] else [ qt4 ]);
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules;
|
nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user