aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/radio/rtl_433
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/radio/rtl_433')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/radio/rtl_433/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/radio/rtl_433/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/radio/rtl_433/default.nix
new file mode 100644
index 000000000000..78d0f8befc98
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/radio/rtl_433/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
+, libusb1, rtl-sdr, soapysdr-with-plugins
+}:
+
+stdenv.mkDerivation {
+
+ version = "20.02";
+ pname = "rtl_433";
+
+ src = fetchFromGitHub {
+ owner = "merbanan";
+ repo = "rtl_433";
+ rev = "20.02";
+ sha256 = "11991xky9gawkragdyg27qsf7kw5bhlg7ygvf3fn7ng00x4xbh1z";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+ buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];
+
+ meta = with stdenv.lib; {
+ description = "Decode traffic from devices that broadcast on 433.9 MHz";
+ homepage = "https://github.com/merbanan/rtl_433";
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ earldouglas ];
+ platforms = platforms.all;
+ };
+
+}