summaryrefslogtreecommitdiff
path: root/pkgs/development/gnuradio-modules
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2024-11-18 17:14:31 +0200
committerDoron Behar <doron.behar@gmail.com>2024-12-24 11:57:42 +0200
commitf3426f874e3d4d3502701c9383bf8c3afe0a16e2 (patch)
tree64616f86eeabd98f088073ae3156219b63c990f3 /pkgs/development/gnuradio-modules
parentgnuradioPackages.limesdr: remove (diff)
downloadnixpkgs-f3426f874e3d4d3502701c9383bf8c3afe0a16e2.tar.gz
gnuradioPackages.rds: remove
Cannot be used anymore by any modern GR version.
Diffstat (limited to 'pkgs/development/gnuradio-modules')
-rw-r--r--pkgs/development/gnuradio-modules/rds/default.nix64
1 files changed, 0 insertions, 64 deletions
diff --git a/pkgs/development/gnuradio-modules/rds/default.nix b/pkgs/development/gnuradio-modules/rds/default.nix
deleted file mode 100644
index 5b9a20042cb9..000000000000
--- a/pkgs/development/gnuradio-modules/rds/default.nix
+++ /dev/null
@@ -1,64 +0,0 @@
-{ lib
-, mkDerivation
-, fetchFromGitHub
-, gnuradio
-, cmake
-, pkg-config
-, swig3
-, python
-, logLib
-, mpir
-, thrift
-, boost
-, gmp
-, icu
-, gnuradioAtLeast
-}:
-
-let
- version = {
- "3.7" = "1.1.0";
- "3.8" = "3.8.0";
- "3.9" = null;
- }.${gnuradio.versionAttr.major};
- src = fetchFromGitHub {
- owner = "bastibl";
- repo = "gr-rds";
- rev = "v${version}";
- sha256 = {
- "3.7" = "0jkzchvw0ivcxsjhi1h0mf7k13araxf5m4wi5v9xdgqxvipjzqfy";
- "3.8" = "+yKLJu2bo7I2jkAiOdjvdhZwxFz9NFgTmzcLthH9Y5o=";
- "3.9" = null;
- }.${gnuradio.versionAttr.major};
- };
-in mkDerivation {
- pname = "gr-rds";
- inherit version src;
- disabled = gnuradioAtLeast "3.9";
-
- buildInputs = [
- logLib
- mpir
- boost
- gmp
- icu
- ] ++ lib.optionals (gnuradio.hasFeature "gr-ctrlport") [
- thrift
- python.pkgs.thrift
- ];
-
- nativeBuildInputs = [
- cmake
- pkg-config
- swig3
- python
- ];
-
- meta = with lib; {
- description = "Gnuradio block for radio data system";
- homepage = "https://github.com/bastibl/gr-rds";
- license = licenses.gpl2Plus;
- platforms = platforms.unix;
- maintainers = with maintainers; [ mog ];
- };
-}