about summary refs log tree commit diff
path: root/pkgs/applications/radio/airspy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/radio/airspy/default.nix')
-rw-r--r--pkgs/applications/radio/airspy/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/applications/radio/airspy/default.nix b/pkgs/applications/radio/airspy/default.nix
deleted file mode 100644
index 6cb0f40f129a..000000000000
--- a/pkgs/applications/radio/airspy/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ 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 ];
-  };
-}