gqrx: use qt5's mkDerivation

Fixes

  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.

See https://github.com/NixOS/nixpkgs/issues/65399
This commit is contained in:
Bjørn Forsman 2019-08-07 20:32:45 +02:00
parent 55aa81a5c5
commit a26168ff46

View File

@ -1,4 +1,5 @@
{ stdenv, fetchFromGitHub, cmake, qtbase, qtsvg, gnuradio, boost, gr-osmosdr
, mkDerivation
# drivers (optional):
, rtl-sdr, hackrf
, pulseaudioSupport ? true, libpulseaudio
@ -6,7 +7,7 @@
assert pulseaudioSupport -> libpulseaudio != null;
stdenv.mkDerivation rec {
mkDerivation rec {
name = "gqrx-${version}";
version = "2.11.5";