mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ lib, stdenv, fetchgit, cmake, pkg-config, makeWrapper
|
|
, boost
|
|
, pythonSupport ? true, python, swig
|
|
, airspy
|
|
, gnuradio
|
|
, hackrf
|
|
, libbladeRF
|
|
, rtl-sdr
|
|
, soapysdr-with-plugins
|
|
, uhd
|
|
, log4cpp
|
|
}:
|
|
|
|
assert pythonSupport -> python != null && swig != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gr-osmosdr";
|
|
version = "0.1.5";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.osmocom.org/gr-osmosdr";
|
|
rev = "v${version}";
|
|
sha256 = "0bf9bnc1c3c4yqqqgmg3nhygj6rcfmyk6pybi27f7461d2cw1drv";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper pkg-config ];
|
|
buildInputs = [
|
|
boost log4cpp airspy gnuradio hackrf libbladeRF rtl-sdr uhd
|
|
] ++ lib.optionals stdenv.isLinux [ soapysdr-with-plugins ]
|
|
++ lib.optionals pythonSupport [ python swig python.pkgs.cheetah ];
|
|
|
|
postInstall = ''
|
|
for prog in "$out"/bin/*; do
|
|
wrapProgram "$prog" --set PYTHONPATH $PYTHONPATH:$(toPythonPath "$out")
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Gnuradio block for OsmoSDR and rtl-sdr";
|
|
homepage = "https://sdr.osmocom.org/trac/wiki/GrOsmoSDR";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
};
|
|
}
|