summary refs log tree commit diff
path: root/pkgs/development/libraries/phonon/default.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-05-10 20:09:15 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-05-10 20:09:15 -0500
commit05bbe4fa553c605a5ca1624c946a177b9d9a7f21 (patch)
tree08717b5a1df4b10158cbfa277862a44b6706a0c3 /pkgs/development/libraries/phonon/default.nix
parent6011898cb521136fcc87520a350b83ac8b1ad47b (diff)
downloadnixpkgs-05bbe4fa553c605a5ca1624c946a177b9d9a7f21.tar
nixpkgs-05bbe4fa553c605a5ca1624c946a177b9d9a7f21.tar.gz
nixpkgs-05bbe4fa553c605a5ca1624c946a177b9d9a7f21.tar.bz2
nixpkgs-05bbe4fa553c605a5ca1624c946a177b9d9a7f21.tar.lz
nixpkgs-05bbe4fa553c605a5ca1624c946a177b9d9a7f21.tar.xz
nixpkgs-05bbe4fa553c605a5ca1624c946a177b9d9a7f21.tar.zst
nixpkgs-05bbe4fa553c605a5ca1624c946a177b9d9a7f21.zip
phonon: remove qtquick1 input
Diffstat (limited to 'pkgs/development/libraries/phonon/default.nix')
-rw-r--r--pkgs/development/libraries/phonon/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/libraries/phonon/default.nix b/pkgs/development/libraries/phonon/default.nix
index 2356a040380..3fbbccc08e3 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;