summary refs log tree commit diff
path: root/pkgs/applications/radio
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2020-06-15 11:34:38 +0800
committerPeter Hoeg <peter@hoeg.com>2020-06-15 12:18:45 +0800
commit227561d5f829779f6a2b1e0009983f10e83d68fe (patch)
tree1eb293344d2d7accd6fbfd47a25a52d198ef260f /pkgs/applications/radio
parent154cbdece1e00cf36b193e131f97a77e22633dcf (diff)
downloadnixpkgs-227561d5f829779f6a2b1e0009983f10e83d68fe.tar
nixpkgs-227561d5f829779f6a2b1e0009983f10e83d68fe.tar.gz
nixpkgs-227561d5f829779f6a2b1e0009983f10e83d68fe.tar.bz2
nixpkgs-227561d5f829779f6a2b1e0009983f10e83d68fe.tar.lz
nixpkgs-227561d5f829779f6a2b1e0009983f10e83d68fe.tar.xz
nixpkgs-227561d5f829779f6a2b1e0009983f10e83d68fe.tar.zst
nixpkgs-227561d5f829779f6a2b1e0009983f10e83d68fe.zip
cubicsdr: use wxGTK31-gtk3
Diffstat (limited to 'pkgs/applications/radio')
-rw-r--r--pkgs/applications/radio/cubicsdr/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/radio/cubicsdr/default.nix b/pkgs/applications/radio/cubicsdr/default.nix
index ef4d68af54c..c85299606c0 100644
--- a/pkgs/applications/radio/cubicsdr/default.nix
+++ b/pkgs/applications/radio/cubicsdr/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub, cmake, fftw, hamlib, libpulseaudio, libGL, libX11, liquid-dsp,
-  pkgconfig, soapysdr-with-plugins, wxGTK, enableDigitalLab ? false }:
+  pkgconfig, soapysdr-with-plugins, wxGTK31-gtk3, enableDigitalLab ? false }:
 
 stdenv.mkDerivation rec {
   pname = "cubicsdr";
@@ -13,7 +13,8 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ cmake pkgconfig ];
-  buildInputs = [ fftw hamlib libpulseaudio libGL libX11 liquid-dsp soapysdr-with-plugins wxGTK ];
+
+  buildInputs = [ fftw hamlib libpulseaudio libGL libX11 liquid-dsp soapysdr-with-plugins wxGTK31-gtk3 ];
 
   cmakeFlags = [ "-DUSE_HAMLIB=ON" ]
     ++ stdenv.lib.optional enableDigitalLab "-DENABLE_DIGITAL_LAB=ON";