about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-08-29 20:38:27 +0200
committerPeter Simons <simons@cryp.to>2019-08-29 20:38:27 +0200
commit40cb97d944fa7328091c023e64b34d7279a98cc9 (patch)
tree36bb90679cced5bae2bdf687e541fa9ee05465d0 /pkgs/applications/video
parent19a1e15501e9f47eb48a6bc39cd2e3085c319e86 (diff)
downloadnixlib-40cb97d944fa7328091c023e64b34d7279a98cc9.tar
nixlib-40cb97d944fa7328091c023e64b34d7279a98cc9.tar.gz
nixlib-40cb97d944fa7328091c023e64b34d7279a98cc9.tar.bz2
nixlib-40cb97d944fa7328091c023e64b34d7279a98cc9.tar.lz
nixlib-40cb97d944fa7328091c023e64b34d7279a98cc9.tar.xz
nixlib-40cb97d944fa7328091c023e64b34d7279a98cc9.tar.zst
nixlib-40cb97d944fa7328091c023e64b34d7279a98cc9.zip
simplescreenrecorder: fix Qt runtime error
 | qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in ""
 |
 | This application failed to start because no Qt platform plugin could be
 | initialized. Reinstalling the application may fix this problem.
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/simplescreenrecorder/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/simplescreenrecorder/default.nix b/pkgs/applications/video/simplescreenrecorder/default.nix
index b456d8ee9a66..c3ef5eae676a 100644
--- a/pkgs/applications/video/simplescreenrecorder/default.nix
+++ b/pkgs/applications/video/simplescreenrecorder/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, fetchurl, alsaLib, ffmpeg, libjack2, libX11, libXext, qtx11extras
+{ stdenv, mkDerivation, fetchurl, alsaLib, ffmpeg, libjack2, libX11, libXext, qtx11extras
 , libXfixes, libGLU_combined, pkgconfig, libpulseaudio, qtbase, cmake, ninja
 }:
 
-stdenv.mkDerivation rec {
+mkDerivation rec {
   name = "simplescreenrecorder-${version}";
   version = "0.3.11";