Commit Graph

274 Commits

Author SHA1 Message Date
Maximilian Bosch
e2a3199597
Merge: wireshark: 4.2.7 -> 4.2.8 (#350912) 2024-10-25 17:29:48 +02:00
eyjhb
e46b49de21 wireshark: 4.2.7 -> 4.2.8 2024-10-24 12:32:29 +02:00
Charles
2410546948
sngrep: build with SSL support
Add configure argument to build sngrep against openssl for SSL connection sniffing support
2024-10-19 06:10:48 +03:00
Thomas Gerbet
2c5fac3edf wireshark: 4.2.6 -> 4.2.7
Fixes CVE-2024-8250.
https://www.wireshark.org/security/wnpa-sec-2024-11.html

Changes:
https://www.wireshark.org/docs/relnotes/wireshark-4.2.7.html
2024-10-01 08:56:48 +02:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Franz Pletz
9028a0db10
Merge pull request #330742 from Feyorsh/wireshark-darwin 2024-08-09 16:25:14 +02:00
Jörg Thalheim
5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
George Huebner
6243746aac
wireshark-qt: fix plugins on darwin
Because wrapQtApps wraps all binaries in *.app bundles, dynamic
modules were being erroneously wrapped.

Additionally, the rpath of extcap plugins is now patched correctly.
2024-07-28 17:22:40 -05:00
R. Ryantm
fbb2c48886 wireshark: 4.2.5 -> 4.2.6 2024-07-12 06:05:22 +00:00
R. Ryantm
46642aaba2 sngrep: 1.8.1 -> 1.8.2 2024-07-08 16:15:21 +00:00
Janik H.
76cd1d2211 maintainers: drop janik
I guess my time has come as well...

With this commit, I'm not just dropping my maintainer entry, but I'm also
resigning from my duties as a board observer and NixCon project lead.
I also terminated my Summer of Nix contract today.
I'll also stop hosting the local NixOS meetup.

The only "project" I'll finish under the NixOS Foundation umbrella is
Google Summer of Code because the mentees aren't even remotely
responsible for why I'm leaving, and it would be unfair to leave them
hanging.

I'm grateful for all the things I was able to learn, for all the experiences
I could gather, and for all the friends I made along the way.
NixOS is what makes computers bearable for me, so I'll go and work on
some fork (*something something* you always meet twice in life).
2024-07-02 02:36:42 +02:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Sigmanificient
0058552891 pkgs/applications: remove uneeded fetchpatch arguments 2024-05-21 03:12:20 +02:00
R. Ryantm
5f594b7da6 wireshark: 4.2.4 -> 4.2.5 2024-05-16 15:08:05 +00:00
Jan Tojnar
eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
This was achieved using the following command:

    sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b')

And then manually reverted the following changes:

- alias in top-level.nix
- function name in wrap-gapps-hook.sh
- comment in postFixup of at-spi2-core
- comment in gtk4
- comment in preFixup of 1password-gui/linux.nix
- comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix
- comment in postFixup of telegram-desktop
- comment in postFixup of fwupd
- buildCommand of mongodb-compass
- postFixup of xflux-gui
- comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config
- description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
2024-04-27 02:23:22 +02:00
Weijia Wang
ac5ab60ed0
Merge pull request #302598 from r-ryantm/auto-update/sngrep
sngrep: 1.8.0 -> 1.8.1
2024-04-17 00:01:53 +02:00
Robert Scott
73c509a1b8 wireshark: 4.2.3 -> 4.2.4
addresses https://nvd.nist.gov/vuln/detail/CVE-2024-2955
https://www.wireshark.org/security/wnpa-sec-2024-06.html
2024-04-15 21:37:30 +02:00
R. Ryantm
cafa7d1443 sngrep: 1.8.0 -> 1.8.1 2024-04-08 14:57:36 +00:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
R. Ryantm
76ce5620c0 tshark: 4.2.2 -> 4.2.3 2024-02-15 03:52:10 +00:00
Pavel Sobolev
9942154f3e
wireshark: remove paveloom from maintainers 2024-01-13 16:02:09 +00:00
Pavel Sobolev
e43872dfc0 wireshark: 4.2.1 -> 4.2.2 2024-01-05 16:06:01 +01:00
Pavel Sobolev
765938ced5 wireshark: 4.2.0 -> 4.2.1 2024-01-04 17:53:46 +01:00
Nick Cao
d8aba6fe40
Merge pull request #276038 from pete3n/update-kismet
kismet: fix cross compilation
2023-12-23 14:52:27 -05:00
Pete
898c9a7ce6 kismet: fix cross compilation
Update default.nix

kismet: fix cross compilation
2023-12-23 13:13:15 -05:00
Alexander Bakker
347d92c04d sngrep: 1.7.0 -> 1.8.0 2023-12-20 15:10:48 +01:00
Pavel Sobolev
9479c06213
wireshark: 4.0.10 -> 4.2.0 2023-11-17 11:39:59 +03:00
Pavel Sobolev
ae071152fb
wireshark: refactor 2023-11-16 19:48:22 +03:00
Hugh O'Brien
f7fa553d6a
kismet: disable coconut support 2023-10-31 19:22:19 -04:00
Hugh O'Brien
30e4f23f8d
kismet: 2022-08 -> 2023-07 2023-10-22 22:12:21 -04:00
Pavel Sobolev
baf1b6b868
wireshark: 4.0.8 -> 4.0.10 2023-10-05 12:02:06 +03:00
Pavel Sobolev
c843c435c9
wireshark: refactor 2023-10-05 11:51:44 +03:00
Pavel Sobolev
359eb2190d
wireshark: 4.0.7 -> 4.0.8 2023-08-24 11:55:18 +03:00
Robert Scott
df7d2ff505 sngrep: enable tests 2023-08-19 20:04:38 +01:00
Robert Scott
25fa8c87ba sngrep: add patch for CVE-2023-36192 2023-08-19 20:04:27 +01:00
Pavel Sobolev
adb2a4f784
wireshark: 4.0.6 -> 4.0.7 2023-08-10 17:03:31 +03:00
Weijia Wang
237bd856cf wireshark: fix build on x86_64-darwin 2023-06-21 14:49:51 +03:00
R. Ryantm
bd4871d9d1 tshark: 4.0.5 -> 4.0.6 2023-06-09 02:27:00 +00:00
Weijia Wang
5c5d221d7f
Merge pull request #230142 from r-ryantm/auto-update/savvycan
savvycan: 208 -> 213
2023-05-23 00:59:15 +03:00
Jan Tojnar
f2fba69fe6 wireshark: do not install redundant files
The icon we were installing is an old one that should not be used these days: https://gitlab.com/wireshark/wireshark/-/merge_requests/10507
And the CMake build script already installs the desktop file and icons in a more proper location since 2.4.0: c274046556
2023-05-06 23:04:58 +02:00
Lorenz Brun
406a26c10d wireshark: build with QT 6 2023-05-06 15:32:31 +02:00
R. Ryantm
be05490337 savvycan: 208 -> 213 2023-05-05 16:21:19 +00:00
Francesco Gazzetta
0e0e1c47c1
Merge pull request #226008 from simoneruffini/add/SavvyCAN
savvycan: init at v208
2023-04-27 16:03:19 +02:00
Isabelle
dc07c15817
wireshark: 4.0.4 -> 4.0.5 (#227852) 2023-04-25 10:33:41 +02:00
Simone Ruffini
feb8918934 savvycan: init at 208
Apply suggestions from code review

Co-authored-by: Francesco Gazzetta <fgaz@fgaz.me>

SavvyCAN: fix typo in default.nix

Update pkgs/applications/networking/sniffers/savvycan/default.nix

Co-authored-by: Francesco Gazzetta <fgaz@fgaz.me>

Apply suggestions from code review

Co-authored-by: Francesco Gazzetta <fgaz@fgaz.me>

fix: style
2023-04-24 19:11:49 +02:00
R. Ryantm
a6075eaa31 sngrep: 1.6.0 -> 1.7.0 2023-04-09 23:49:27 +00:00
Vladimír Čunát
cd585031d3
ettercap: patch to accept curl 8 2023-03-24 16:34:28 +01:00
Weijia Wang
a66d2f6b10 qtwirediff: add darwin support 2023-03-16 21:23:58 +02:00
Janik
ec1e3b40e6
qtwirediff: add qtwayland to build inputs (#221520)
GUI applications are supposed to add qtwayland to buildInputs, see #174946 for details

Co-authored-by: Janik H <janik@aq0.de>
2023-03-16 19:35:34 +01:00
Janik
4a47938cf4
qtwirediff: init at unstable-2023-03-07 (#216364)
Co-authored-by: Janik H <janik@aq0.de>
2023-03-16 19:06:29 +01:00