blob: c9020146272dd0899cf6afd76d7300710ae44beb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
libusb1,
rtl-sdr,
soapysdr-with-plugins,
}:
stdenv.mkDerivation (finalAttrs: {
version = "25.12";
pname = "rtl_433";
src = fetchFromGitHub {
owner = "merbanan";
repo = "rtl_433";
rev = finalAttrs.version;
hash = "sha256-VDNXLx6OUBQkflKFHp1LP8N5g15o6vYg3P9XWgIoYIg=";
};
nativeBuildInputs = [
pkg-config
cmake
];
buildInputs = [
libusb1
rtl-sdr
soapysdr-with-plugins
];
doCheck = true;
meta = {
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";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
earldouglas
markuskowa
];
platforms = lib.platforms.all;
mainProgram = "rtl_433";
};
})
|