about summary refs log tree commit diff
path: root/pkgs/applications/radio/rtl_433
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2019-05-23 23:42:15 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2019-05-23 23:44:26 +0200
commit6180fcb54f7395fd17d52e27a2083701cddb48d6 (patch)
tree2a508bac49e78e97f53a4f416e86f6047bb6a182 /pkgs/applications/radio/rtl_433
parentfc1129c8af5705039d197d133e15a090052ebb24 (diff)
downloadnixlib-6180fcb54f7395fd17d52e27a2083701cddb48d6.tar
nixlib-6180fcb54f7395fd17d52e27a2083701cddb48d6.tar.gz
nixlib-6180fcb54f7395fd17d52e27a2083701cddb48d6.tar.bz2
nixlib-6180fcb54f7395fd17d52e27a2083701cddb48d6.tar.lz
nixlib-6180fcb54f7395fd17d52e27a2083701cddb48d6.tar.xz
nixlib-6180fcb54f7395fd17d52e27a2083701cddb48d6.tar.zst
nixlib-6180fcb54f7395fd17d52e27a2083701cddb48d6.zip
rtl_433: enable soapysdr backend support
soapy support was added in 18.12
Diffstat (limited to 'pkgs/applications/radio/rtl_433')
-rw-r--r--pkgs/applications/radio/rtl_433/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/radio/rtl_433/default.nix b/pkgs/applications/radio/rtl_433/default.nix
index 5d012437e6ee..88dc64471ec7 100644
--- a/pkgs/applications/radio/rtl_433/default.nix
+++ b/pkgs/applications/radio/rtl_433/default.nix
@@ -1,4 +1,7 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libusb1, rtl-sdr }:
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
+, libusb1, rtl-sdr, soapysdr-with-plugins
+}:
+
 stdenv.mkDerivation rec {
 
   version = "18.12";
@@ -13,7 +16,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ autoreconfHook pkgconfig ];
 
-  buildInputs = [ libusb1 rtl-sdr ];
+  buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];
 
   meta = with stdenv.lib; {
     description = "Decode traffic from devices that broadcast on 433.9 MHz";