Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
863 B
Nix
48 lines
863 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
libusb1,
|
|
rtl-sdr,
|
|
soapysdr-with-plugins,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "25.02";
|
|
pname = "rtl_433";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "merbanan";
|
|
repo = "rtl_433";
|
|
rev = version;
|
|
hash = "sha256-S0jtcgbpS2NOezZJ0uq1pVj0nsa82F0NRmQD9glILz4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
libusb1
|
|
rtl-sdr
|
|
soapysdr-with-plugins
|
|
];
|
|
|
|
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";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [
|
|
earldouglas
|
|
markuskowa
|
|
];
|
|
platforms = platforms.all;
|
|
mainProgram = "rtl_433";
|
|
};
|
|
}
|