2019-05-23 21:42:15 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
|
|
, libusb1, rtl-sdr, soapysdr-with-plugins
|
|
|
|
}:
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2018-03-03 16:28:15 +00:00
|
|
|
|
2020-02-21 10:09:23 +00:00
|
|
|
version = "20.02";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "rtl_433";
|
2018-03-03 16:28:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "merbanan";
|
|
|
|
repo = "rtl_433";
|
2020-02-21 10:09:23 +00:00
|
|
|
rev = "20.02";
|
|
|
|
sha256 = "11991xky9gawkragdyg27qsf7kw5bhlg7ygvf3fn7ng00x4xbh1z";
|
2018-03-03 16:28:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
2019-05-23 21:42:15 +00:00
|
|
|
buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];
|
2018-03-03 16:28:15 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Decode traffic from devices that broadcast on 433.9 MHz";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/merbanan/rtl_433";
|
2018-03-03 16:28:15 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ earldouglas ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|