Merge pull request #36255 from earldouglas/rtl_433

rtl_433: init at 51d275c
This commit is contained in:
Jörg Thalheim 2018-03-03 16:44:12 +00:00 committed by GitHub
commit 183f77f85f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View 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;
};
}

View File

@ -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 { };