summaryrefslogtreecommitdiff
path: root/pkgs/development/gnuradio-modules
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2024-11-18 17:10:53 +0200
committerDoron Behar <doron.behar@gmail.com>2024-12-24 11:57:41 +0200
commit90639458999c66bc2d8d85eea67dfcf818baa62f (patch)
tree0c805ff5bedd6a759d7ebd130cb0606de528f446 /pkgs/development/gnuradio-modules
parentgnuradioPackages.osmosdr: simplify expression for a single GR version (diff)
downloadnixpkgs-90639458999c66bc2d8d85eea67dfcf818baa62f.tar.gz
gnuradioPackages.ais: remove
Cannot be used anymore by any modern GR version.
Diffstat (limited to 'pkgs/development/gnuradio-modules')
-rw-r--r--pkgs/development/gnuradio-modules/ais/default.nix66
1 files changed, 0 insertions, 66 deletions
diff --git a/pkgs/development/gnuradio-modules/ais/default.nix b/pkgs/development/gnuradio-modules/ais/default.nix
deleted file mode 100644
index a86fce043d97..000000000000
--- a/pkgs/development/gnuradio-modules/ais/default.nix
+++ /dev/null
@@ -1,66 +0,0 @@
-{ lib
-, stdenv
-, mkDerivation
-, fetchFromGitHub
-, cmake
-, pkg-config
-, python
-, boost
-, cppunit
-, logLib
-, osmosdr
-, gmp
-, mpir
-, fftwFloat
-, icu
-, gnuradio
-, thrift
-, gnuradioAtLeast
-}:
-
-mkDerivation rec {
- pname = "gr-ais";
- version = "2020-08-13";
- src = fetchFromGitHub {
- owner = "bistromath";
- repo = "gr-ais";
- rev = "2162103226f3dae43c8c2ab23b79483b84346665";
- sha256 = "1vackka34722d8pcspfwj0j6gc9ic7dqq64sgkrpjm94sh3bmb0b";
- };
- disabled = gnuradioAtLeast "3.9";
-
- nativeBuildInputs = [
- cmake
- pkg-config
- python
- ];
-
- cmakeFlags = [
- "-DCMAKE_EXE_LINKER_FLAGS=-pthread"
- ];
-
- buildInputs = [
- cppunit
- osmosdr
- boost
- logLib
- gmp
- mpir
- fftwFloat
- icu
- thrift
- gnuradio.python.pkgs.thrift
- ];
-
- meta = with lib; {
- description = "Gnuradio block for ais";
- mainProgram = "ais_rx";
- homepage = "https://github.com/bistromath/gr-ais";
- license = licenses.gpl3Plus;
- platforms = platforms.unix;
- # rpcserver_aggregator.h:111:54: error: no template named 'unary_function'
- # in namespace 'std'; did you mean '__unary_function'?
- broken = stdenv.hostPlatform.isDarwin;
- maintainers = with maintainers; [ mog ];
- };
-}