Merge pull request #103936 from Mindavi/rtl-433/20.11

rtl_433: 20.02 -> 20.11
This commit is contained in:
Sandro 2020-11-24 20:58:18 +01:00 committed by GitHub
commit 8fe8595339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 8 deletions

View File

@ -1,25 +1,26 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig { stdenv, fetchFromGitHub, cmake, pkgconfig
, libusb1, rtl-sdr, soapysdr-with-plugins , libusb1, rtl-sdr, soapysdr-with-plugins
}: }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
version = "20.11";
version = "20.02";
pname = "rtl_433"; pname = "rtl_433";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "merbanan"; owner = "merbanan";
repo = "rtl_433"; repo = "rtl_433";
rev = "20.02"; rev = version;
sha256 = "11991xky9gawkragdyg27qsf7kw5bhlg7ygvf3fn7ng00x4xbh1z"; sha256 = "093bxjxkg7yf78wqj5gpijbfa2p05ny09qqsj84kzi1svnzsa369";
}; };
nativeBuildInputs = [ autoreconfHook pkgconfig ]; nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ]; buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ];
doCheck = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Decode traffic from devices that broadcast on 433.9 MHz"; 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"; homepage = "https://github.com/merbanan/rtl_433";
license = licenses.gpl2; license = licenses.gpl2;
maintainers = with maintainers; [ earldouglas ]; maintainers = with maintainers; [ earldouglas ];