mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
43 lines
856 B
Nix
43 lines
856 B
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, pkgconfig
|
|
, libbladeRF
|
|
, libusb1
|
|
, ncurses
|
|
, rtl-sdr
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dump1090";
|
|
version = "3.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flightaware";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0xg8rzrxqklx1m9ncxsd96dlkbjcsxfi2mrb859v50f07xysdyd8";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [
|
|
libbladeRF
|
|
libusb1
|
|
ncurses
|
|
rtl-sdr
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/share
|
|
cp -v dump1090 view1090 $out/bin
|
|
cp -vr public_html $out/share/dump1090
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A simple Mode S decoder for RTLSDR devices";
|
|
homepage = "https://github.com/flightaware/dump1090";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ earldouglas ];
|
|
};
|
|
}
|