Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / radio / airspy / default.nix
blob6cb0f40f129a886a505dcbecc4de1a8d07ea880f
1 { stdenv, lib, fetchFromGitHub
2 , cmake , pkg-config, libusb1
3 }:
5 stdenv.mkDerivation rec {
6   pname = "airspy";
7   version = "1.0.10";
9   src = fetchFromGitHub {
10     owner = "airspy";
11     repo = "airspyone_host";
12     rev = "v${version}";
13     sha256 = "1v7sfkkxc6f8ny1p9xrax1agkl6q583mjx8k0lrrwdz31rf9qgw9";
14   };
16   postPatch = ''
17     substituteInPlace airspy-tools/CMakeLists.txt --replace "/etc/udev/rules.d" "$out/etc/udev/rules.d"
18   '';
20   nativeBuildInputs = [ cmake pkg-config ];
21   buildInputs = [ libusb1 ];
23   cmakeFlags =
24     lib.optionals stdenv.isLinux [ "-DINSTALL_UDEV_RULES=ON" ];
26   meta = with lib; {
27     homepage = "https://github.com/airspy/airspyone_host";
28     description = "Host tools and driver library for the AirSpy SDR";
29     license = licenses.bsd3;
30     platforms = with platforms; linux ++ darwin;
31     maintainers = with maintainers; [ markuskowa ];
32   };