about summary refs log tree commit diff
path: root/pkgs/applications/radio
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2019-05-24 23:12:43 +0200
committerGitHub <noreply@github.com>2019-05-24 23:12:43 +0200
commit8bbdde7032722951e37c4707d1445d351be54612 (patch)
tree6413d389356c02bdddcb27bbc9e88f8abebd53a4 /pkgs/applications/radio
parent7755d37eca52cde6d2b4627ba7c0cbe993a59dc8 (diff)
parent6180fcb54f7395fd17d52e27a2083701cddb48d6 (diff)
Merge pull request #61975 from markuskowa/fix-rtl433
rtl_433: enable soapysdr backend support
Diffstat (limited to 'pkgs/applications/radio')
-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 5d012437e6ee0..88dc64471ec72 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";