mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
34 lines
880 B
Nix
34 lines
880 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";
|
|
rev = "v${version}";
|
|
sha256 = "1v7sfkkxc6f8ny1p9xrax1agkl6q583mjx8k0lrrwdz31rf9qgw9";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace airspy-tools/CMakeLists.txt --replace "/etc/udev/rules.d" "$out/etc/udev/rules.d"
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ libusb1 ];
|
|
|
|
cmakeFlags =
|
|
lib.optionals stdenv.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 ];
|
|
};
|
|
}
|