about summary refs log tree commit diff
path: root/pkgs/applications/video/shotcut
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-19 20:14:45 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-20 07:56:43 -0600
commitccdbc228369480fe5f96b162ac46fcef3be55127 (patch)
treeaff0fdac3e714312cd0956a490d77099b6c0f898 /pkgs/applications/video/shotcut
parentd40531639899805efd9ecbcd04ce11062bb59a39 (diff)
downloadnixlib-ccdbc228369480fe5f96b162ac46fcef3be55127.tar
nixlib-ccdbc228369480fe5f96b162ac46fcef3be55127.tar.gz
nixlib-ccdbc228369480fe5f96b162ac46fcef3be55127.tar.bz2
nixlib-ccdbc228369480fe5f96b162ac46fcef3be55127.tar.lz
nixlib-ccdbc228369480fe5f96b162ac46fcef3be55127.tar.xz
nixlib-ccdbc228369480fe5f96b162ac46fcef3be55127.tar.zst
nixlib-ccdbc228369480fe5f96b162ac46fcef3be55127.zip
shotcut: Qt 5 infrastructure update
Diffstat (limited to 'pkgs/applications/video/shotcut')
-rw-r--r--pkgs/applications/video/shotcut/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix
index c0458748c96c..74f9c1604b22 100644
--- a/pkgs/applications/video/shotcut/default.nix
+++ b/pkgs/applications/video/shotcut/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qt5 }:
+{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qtbase }:
 
 stdenv.mkDerivation rec {
   name = "shotcut-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
     sha256 = "1504ds3ppqmpg84nb2gb74qndqysjwn3xw7n8xv19kd1pppnr10f";
   };
 
-  buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qt5.base ];
+  buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qtbase ];
 
   configurePhase = "qmake PREFIX=$out";