From 38226ea4c31d274a4c347d2daad2c48e913c4dcc Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 15 Jan 2016 07:14:20 +0100 Subject: [PATCH] smtube: add missing build dependency --- pkgs/applications/video/smtube/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/smtube/default.nix b/pkgs/applications/video/smtube/default.nix index bc55f943a88..dd988f79cab 100644 --- a/pkgs/applications/video/smtube/default.nix +++ b/pkgs/applications/video/smtube/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qtscript }: +{ stdenv, fetchurl, qtscript, qtwebkit }: stdenv.mkDerivation rec { version = "15.11.0"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - buildInputs = [ qtscript ]; + buildInputs = [ qtscript qtwebkit ]; meta = with stdenv.lib; { description = "Play and download Youtube videos";