3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/radio/rtl_433/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1 KiB
Nix
Raw Normal View History

2022-05-12 22:34:01 +01:00
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, fetchpatch
, libusb1, rtl-sdr, soapysdr-with-plugins
}:
stdenv.mkDerivation rec {
2021-12-22 17:50:47 +00:00
version = "21.12";
pname = "rtl_433";
2018-03-03 16:28:15 +00:00
src = fetchFromGitHub {
owner = "merbanan";
repo = "rtl_433";
rev = version;
2021-12-22 17:50:47 +00:00
sha256 = "sha256-KoDKyI7KDdGSe79ZTuL9ObKnOJsqTN4wrMq+/cvQ/Xk=";
2018-03-03 16:28:15 +00:00
};
2022-05-12 22:34:01 +01:00
patches = [( fetchpatch {
name = "CVE-2022-27419";
url = "https://github.com/merbanan/rtl_433/commit/37455483889bd1c641bdaafc493d1cc236b74904.patch";
sha256 = "172jndh8x5nlcbx2jp5y8fgfxsawwfz95037pcjp170gf93ijy88";
})];
nativeBuildInputs = [ pkg-config cmake ];
2018-03-03 16:28:15 +00:00
buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];
2018-03-03 16:28:15 +00:00
doCheck = true;
meta = with lib; {
description = "Decode traffic from devices that broadcast on 433.9 MHz, 868 MHz, 315 MHz, 345 MHz and 915 MHz";
homepage = "https://github.com/merbanan/rtl_433";
2021-05-15 14:20:46 +01:00
license = licenses.gpl2Plus;
2022-05-12 22:35:09 +01:00
maintainers = with maintainers; [ earldouglas markuskowa ];
2018-03-03 16:28:15 +00:00
platforms = platforms.all;
};
}