43 lines
936 B
Nix
43 lines
936 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
libusb1,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "airspy";
|
|
version = "1.0.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "airspy";
|
|
repo = "airspyone_host";
|
|
tag = "v${version}";
|
|
sha256 = "1v7sfkkxc6f8ny1p9xrax1agkl6q583mjx8k0lrrwdz31rf9qgw9";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace airspy-tools/CMakeLists.txt --replace "/etc/udev/rules.d" "$out/etc/udev/rules.d"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
buildInputs = [ libusb1 ];
|
|
|
|
cmakeFlags = lib.optionals stdenv.hostPlatform.isLinux [ "-DINSTALL_UDEV_RULES=ON" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/airspy/airspyone_host";
|
|
description = "Host tools and driver library for the AirSpy SDR";
|
|
license = licenses.bsd3;
|
|
platforms = with platforms; linux ++ darwin;
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
};
|
|
}
|