3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/radio/dump1090/default.nix

58 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, pkg-config
, libbladeRF
, libusb1
, ncurses
, rtl-sdr
2021-10-28 09:01:22 +01:00
, hackrf
, limesuite
}:
2017-10-19 02:45:40 +01:00
stdenv.mkDerivation rec {
2019-02-18 16:22:49 +00:00
pname = "dump1090";
2022-02-11 10:32:20 +00:00
version = "7.1";
2017-10-19 02:45:40 +01:00
src = fetchFromGitHub {
owner = "flightaware";
2019-02-18 16:22:49 +00:00
repo = pname;
rev = "v${version}";
2022-02-11 10:32:20 +00:00
sha256 = "sha256-1fD8ZMkTS/r+p1rrOfJhH2sz3sJCapQcvk8f8crGApw=";
2017-10-19 02:45:40 +01:00
};
nativeBuildInputs = [ pkg-config ];
2017-10-19 02:45:40 +01:00
buildInputs = [
libbladeRF
libusb1
ncurses
rtl-sdr
2021-10-28 09:01:22 +01:00
hackrf
] ++ lib.optional stdenv.isLinux limesuite;
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang
"-Wno-implicit-function-declaration -Wno-int-conversion";
buildFlags = [ "dump1090" "view1090" ];
doCheck = true;
2017-10-19 02:45:40 +01:00
installPhase = ''
runHook preInstall
2017-10-19 02:45:40 +01:00
mkdir -p $out/bin $out/share
cp -v dump1090 view1090 $out/bin
2017-10-19 02:45:40 +01:00
cp -vr public_html $out/share/dump1090
runHook postInstall
2017-10-19 02:45:40 +01:00
'';
meta = with lib; {
2017-10-19 02:45:40 +01:00
description = "A simple Mode S decoder for RTLSDR devices";
homepage = "https://github.com/flightaware/dump1090";
license = licenses.gpl2Plus;
2021-10-28 09:01:22 +01:00
platforms = platforms.unix;
2017-10-19 02:45:40 +01:00
maintainers = with maintainers; [ earldouglas ];
};
}