about summary refs log tree commit diff
path: root/pkgs/applications/radio/soapyremote/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/radio/soapyremote/default.nix')
-rw-r--r--pkgs/applications/radio/soapyremote/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/applications/radio/soapyremote/default.nix b/pkgs/applications/radio/soapyremote/default.nix
deleted file mode 100644
index c6e7cddd0903..000000000000
--- a/pkgs/applications/radio/soapyremote/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, cmake, soapysdr, avahi }:
-
-let
-  version = "0.5.2";
-
-in stdenv.mkDerivation {
-  pname = "soapyremote";
-  inherit version;
-
-  src = fetchFromGitHub {
-    owner = "pothosware";
-    repo = "SoapyRemote";
-    rev = "soapy-remote-${version}";
-    sha256 = "124sy9v08fm51ds1yzrxspychn34y0rl6y48mzariianazvzmfax";
-  };
-
-  nativeBuildInputs = [ cmake ];
-  buildInputs = [ soapysdr avahi ];
-
-  cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ];
-
-  env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.isDarwin [ "-include sys/select.h" ]);
-
-  meta = with lib; {
-    homepage = "https://github.com/pothosware/SoapyRemote";
-    description = "SoapySDR plugin for remote access to SDRs";
-    license = licenses.boost;
-    maintainers = with maintainers; [ markuskowa ];
-    platforms = platforms.unix;
-    mainProgram = "SoapySDRServer";
-  };
-}