From 05bbe4fa553c605a5ca1624c946a177b9d9a7f21 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 10 May 2016 20:09:15 -0500 Subject: phonon: remove qtquick1 input --- pkgs/development/libraries/phonon/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'pkgs/development/libraries/phonon') diff --git a/pkgs/development/libraries/phonon/default.nix b/pkgs/development/libraries/phonon/default.nix index 2356a0403804f..3fbbccc08e30a 100644 --- a/pkgs/development/libraries/phonon/default.nix +++ b/pkgs/development/libraries/phonon/default.nix @@ -1,5 +1,5 @@ { 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 }: with lib; @@ -10,7 +10,6 @@ let in assert withQt5 -> qtbase != null; -assert withQt5 -> qtquick1 != null; assert withQt5 -> qttools != null; stdenv.mkDerivation rec { @@ -31,7 +30,7 @@ stdenv.mkDerivation rec { buildInputs = [ 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; -- cgit 1.4.1