From d40531639899805efd9ecbcd04ce11062bb59a39 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:13:45 -0600 Subject: [PATCH] bomi: Qt 5 infrastructure update --- pkgs/applications/video/bomi/default.nix | 9 +++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/video/bomi/default.nix b/pkgs/applications/video/bomi/default.nix index da07458f4f64..36da9d320721 100644 --- a/pkgs/applications/video/bomi/default.nix +++ b/pkgs/applications/video/bomi/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, fetchFromGitHub, pkgconfig, perl, python, which, makeWrapper -, libX11, libxcb, qt5, mesa +, libX11, libxcb, mesa +, qtbase, qtdeclarative, qtquickcontrols, qttools, qtx11extras , ffmpeg , libchardet , mpg123 @@ -26,7 +27,7 @@ assert pulseSupport -> libpulseaudio != null; assert cddaSupport -> libcdda != null; assert youtubeSupport -> youtube-dl != null; -let qtPath = makeSearchPath "lib/qt5/qml" [ qt5.declarative qt5.quickcontrols ]; +let qtPath = makeSearchPath "lib/qt5/qml" [ qtdeclarative qtquickcontrols ]; in stdenv.mkDerivation rec { @@ -42,7 +43,7 @@ stdenv.mkDerivation rec { buildInputs = with stdenv.lib; [ libX11 libxcb mesa - qt5.base qt5.x11extras + qtbase qtx11extras ffmpeg libchardet mpg123 @@ -85,7 +86,7 @@ stdenv.mkDerivation rec { ++ optional cddaSupport "--enable-cdda" ; - nativeBuildInputs = [ pkgconfig perl python which qt5.tools makeWrapper ]; + nativeBuildInputs = [ pkgconfig perl python which qttools makeWrapper ]; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 44df868661bd..b1d92f78f65f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11234,7 +11234,7 @@ let cmatrix = callPackage ../applications/misc/cmatrix { }; - bomi = callPackage ../applications/video/bomi { + bomi = qt5.callPackage ../applications/video/bomi { youtube-dl = pythonPackages.youtube-dl; pulseSupport = config.pulseaudio or true; };