gnuradioPackages.ais: remove

Cannot be used anymore by any modern GR version.
This commit is contained in:
Doron Behar
2024-12-24 11:57:41 +02:00
parent c405f45fc0
commit 9063945899
2 changed files with 0 additions and 68 deletions
@@ -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 ];
};
}
-2
View File
@@ -37,8 +37,6 @@ in {
osmosdr = callPackage ../development/gnuradio-modules/osmosdr/default.nix { };
ais = callPackage ../development/gnuradio-modules/ais/default.nix { };
fosphor = callPackage ../development/gnuradio-modules/fosphor/default.nix { };
grnet = callPackage ../development/gnuradio-modules/grnet/default.nix { };