about summary refs log tree commit diff
path: root/pkgs/applications/radio/quisk
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-03-19 20:06:54 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-03-19 20:06:54 +0200
commitf5003fa49094ae68c80176e293bfec79cdc629cc (patch)
treeb22960b7a95866806f69d019922fa297280e02b1 /pkgs/applications/radio/quisk
parentba95c7066c05555fc06eccc8322bc466513b99ef (diff)
quisk: migrate to wxPython_4_2
Diffstat (limited to 'pkgs/applications/radio/quisk')
-rw-r--r--pkgs/applications/radio/quisk/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/radio/quisk/default.nix b/pkgs/applications/radio/quisk/default.nix
index 34e83ab95ca23..5fcd11a175236 100644
--- a/pkgs/applications/radio/quisk/default.nix
+++ b/pkgs/applications/radio/quisk/default.nix
@@ -1,5 +1,5 @@
 { lib, python39Packages, fetchPypi
-, fftw, alsa-lib, pulseaudio, pyusb, wxPython_4_0 }:
+, fftw, alsa-lib, pulseaudio, pyusb, wxPython_4_2 }:
 
 python39Packages.buildPythonApplication rec {
   pname = "quisk";
@@ -12,7 +12,7 @@ python39Packages.buildPythonApplication rec {
 
   buildInputs = [ fftw alsa-lib pulseaudio ];
 
-  propagatedBuildInputs = [ pyusb wxPython_4_0 ];
+  propagatedBuildInputs = [ pyusb wxPython_4_2 ];
 
   doCheck = false;