summaryrefslogtreecommitdiff
path: root/pkgs/development/gnuradio-modules
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2024-11-18 17:14:12 +0200
committerDoron Behar <doron.behar@gmail.com>2024-12-24 11:57:41 +0200
commit19f71524c2f2818b1ed7c873a5901ab39f267b9d (patch)
tree6935264f6f7c9b6a4d9c547ef5359d74a257edb1 /pkgs/development/gnuradio-modules
parentgnuradioPackages.ais: remove (diff)
downloadnixpkgs-19f71524c2f2818b1ed7c873a5901ab39f267b9d.tar.gz
gnuradioPackages.limesdr: remove
Cannot be used anymore by any modern GR version.
Diffstat (limited to 'pkgs/development/gnuradio-modules')
-rw-r--r--pkgs/development/gnuradio-modules/limesdr/default.nix63
1 files changed, 0 insertions, 63 deletions
diff --git a/pkgs/development/gnuradio-modules/limesdr/default.nix b/pkgs/development/gnuradio-modules/limesdr/default.nix
deleted file mode 100644
index 27c846c44af5..000000000000
--- a/pkgs/development/gnuradio-modules/limesdr/default.nix
+++ /dev/null
@@ -1,63 +0,0 @@
-{ lib
-, mkDerivation
-, fetchFromGitHub
-, gnuradio
-, thrift
-, cmake
-, pkg-config
-, swig3
-, python
-, logLib
-, mpir
-, boost
-, gmp
-, icu
-, limesuite
-, gnuradioAtLeast
-}:
-
-let
- version = {
- "3.7" = "2.0.0";
- "3.8" = "3.0.1";
- }.${gnuradio.versionAttr.major};
- src = fetchFromGitHub {
- owner = "myriadrf";
- repo = "gr-limesdr";
- rev = "v${version}";
- sha256 = {
- "3.7" = "0ldqvfwl0gil89l9s31fjf9d7ki0dk572i8vna336igfaz348ypq";
- "3.8" = "ffs+8TU0yr6IW1xZJ/abQ1CQWGZM+zYqPRJxy3ZvM9U=";
- }.${gnuradio.versionAttr.major};
- };
-in mkDerivation {
- pname = "gr-limesdr";
- inherit version src;
- disabled = gnuradioAtLeast "3.9";
-
- nativeBuildInputs = [
- cmake
- pkg-config
- swig3
- python
- ];
- buildInputs = [
- logLib
- mpir
- boost
- gmp
- icu
- limesuite
- ] ++ lib.optionals (gnuradio.hasFeature "gr-ctrlport") [
- thrift
- python.pkgs.thrift
- ];
-
- meta = with lib; {
- description = "Gnuradio source and sink blocks for LimeSDR";
- homepage = "https://wiki.myriadrf.org/Gr-limesdr_Plugin_for_GNURadio";
- license = licenses.mit;
- platforms = platforms.linux;
- maintainers = [ maintainers.markuskowa ];
- };
-}