mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
rtl_433: init at 51d275c
This commit is contained in:
parent
9936ed4920
commit
b9a6ed77d2
26
pkgs/applications/misc/rtl_433/default.nix
Normal file
26
pkgs/applications/misc/rtl_433/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libusb1, rtl-sdr }:
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
version = "2018-02-23";
|
||||
name = "rtl_433-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "merbanan";
|
||||
repo = "rtl_433";
|
||||
rev = "51d275c";
|
||||
sha256 = "1j443wmws5xgc18s47bvw3pqljk747izypz52rmlrvs16v96cg2g";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
|
||||
buildInputs = [ libusb1 rtl-sdr ];
|
||||
|
||||
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;
|
||||
};
|
||||
|
||||
}
|
|
@ -17266,6 +17266,8 @@ with pkgs;
|
|||
};
|
||||
rrsync = callPackage ../applications/networking/sync/rsync/rrsync.nix {};
|
||||
|
||||
rtl_433 = callPackage ../applications/misc/rtl_433 { };
|
||||
|
||||
rtl-sdr = callPackage ../applications/misc/rtl-sdr { };
|
||||
|
||||
rtv = callPackage ../applications/misc/rtv { };
|
||||
|
|
Loading…
Reference in a new issue