lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.03-beta 26 lines 696 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libusb1, rtl-sdr }: 2stdenv.mkDerivation rec { 3 4 version = "2018-02-23"; 5 name = "rtl_433-${version}"; 6 7 src = fetchFromGitHub { 8 owner = "merbanan"; 9 repo = "rtl_433"; 10 rev = "51d275c"; 11 sha256 = "1j443wmws5xgc18s47bvw3pqljk747izypz52rmlrvs16v96cg2g"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 16 buildInputs = [ libusb1 rtl-sdr ]; 17 18 meta = with stdenv.lib; { 19 description = "Decode traffic from devices that broadcast on 433.9 MHz"; 20 homepage = https://github.com/merbanan/rtl_433; 21 license = licenses.gpl2; 22 maintainers = with maintainers; [ earldouglas ]; 23 platforms = platforms.all; 24 }; 25 26}