summaryrefslogtreecommitdiff
path: root/pkgs/development/gnuradio-modules
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2024-11-18 17:14:50 +0200
committerDoron Behar <doron.behar@gmail.com>2024-12-24 11:57:42 +0200
commit25e5103b8e0eaa074543c9d821743b7dfe72297a (patch)
treefca7aa4a29e6ccdfab53c81db118f718881666aa /pkgs/development/gnuradio-modules
parentgnuradioPackages.rds: remove (diff)
downloadnixpkgs-25e5103b8e0eaa074543c9d821743b7dfe72297a.tar.gz
gnuradioPackages.nacl: remove
Cannot be used anymore by any modern GR version.
Diffstat (limited to 'pkgs/development/gnuradio-modules')
-rw-r--r--pkgs/development/gnuradio-modules/nacl/default.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/pkgs/development/gnuradio-modules/nacl/default.nix b/pkgs/development/gnuradio-modules/nacl/default.nix
deleted file mode 100644
index 34cd04aff4ea..000000000000
--- a/pkgs/development/gnuradio-modules/nacl/default.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ lib
-, mkDerivation
-, fetchFromGitHub
-, cmake
-, pkg-config
-, cppunit
-, swig3
-, boost
-, logLib
-, python
-, libsodium
-, gnuradioAtLeast
-}:
-
-mkDerivation {
- pname = "gr-nacl";
- version = "2017-04-10";
- src = fetchFromGitHub {
- owner = "stwunsch";
- repo = "gr-nacl";
- rev = "15276bb0fcabf5fe4de4e58df3d579b5be0e9765";
- sha256 = "018np0qlk61l7mlv3xxx5cj1rax8f1vqrsrch3higsl25yydbv7v";
- };
- disabled = gnuradioAtLeast "3.8";
-
- nativeBuildInputs = [
- cmake
- pkg-config
- swig3
- python
- ];
-
- buildInputs = [
- cppunit
- logLib
- boost
- libsodium
- ];
-
- meta = with lib; {
- description = "Gnuradio block for encryption";
- homepage = "https://github.com/stwunsch/gr-nacl";
- license = licenses.gpl3Plus;
- platforms = platforms.linux ++ platforms.darwin;
- maintainers = with maintainers; [ mog ];
- };
-}