summary refs log tree commit diff
path: root/pkgs/tools/networking/ngrep
diff options
context:
space:
mode:
authorNikola Knezevic <nikola.knezevic@imc.com>2021-11-05 10:08:49 +0100
committerNikola Knezevic <nikola.knezevic@imc.com>2021-11-05 10:08:50 +0100
commit0278e1e297b9862919a66aab312cb1567a1e863d (patch)
tree4f72ed5dfcb70dcb7f0169190c65311b9a8681d3 /pkgs/tools/networking/ngrep
parent28be9886f09ff6efbc6356801754ea5893d1f908 (diff)
downloadnixpkgs-0278e1e297b9862919a66aab312cb1567a1e863d.tar
nixpkgs-0278e1e297b9862919a66aab312cb1567a1e863d.tar.gz
nixpkgs-0278e1e297b9862919a66aab312cb1567a1e863d.tar.bz2
nixpkgs-0278e1e297b9862919a66aab312cb1567a1e863d.tar.lz
nixpkgs-0278e1e297b9862919a66aab312cb1567a1e863d.tar.xz
nixpkgs-0278e1e297b9862919a66aab312cb1567a1e863d.tar.zst
nixpkgs-0278e1e297b9862919a66aab312cb1567a1e863d.zip
ngrep: Make available on darwin
ngrep works on macos/Darwin without problems. The official page even
states that:

```
Confirmed Working Platforms

 Linux 2.0+ (RH6+, SuSE, TurboLinux, Debian, Gentoo, Ubuntu, Mandrake, Slackware)/x86, RedHat/alpha Cobalt, (Qube2) Linux/MIPS
 Solaris 2.5.1, 2.6/SPARC, Solaris 7, Solaris 8/SPARC, Solaris 9/SPARC
 FreeBSD 2.2.5, 3.1, 3.2, 3.4-RC, 3.4-RELEASE, 4.0, 5.0
 OpenBSD 2.4 (after upgrading pcap from 0.2), 2.9, 3.0, 3.1+
 NetBSD 1.5/SPARC
 Digital Unix V4.0D (OSF/1), Tru64 5.0, Tru64 5.1A
 HPUX 11
 IRIX
 AIX 4.3.3.0/PowerPC
 BeOS R5
 Mac OS X 10+
 GNU HURD
 Windows 95, 98, NT, 2000, XP, 2003/x86, 7, 8, 8.1, 10
```
Diffstat (limited to 'pkgs/tools/networking/ngrep')
-rw-r--r--pkgs/tools/networking/ngrep/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/ngrep/default.nix b/pkgs/tools/networking/ngrep/default.nix
index 1e57ac75843..bee8678d1c9 100644
--- a/pkgs/tools/networking/ngrep/default.nix
+++ b/pkgs/tools/networking/ngrep/default.nix
@@ -48,7 +48,7 @@ stdenv.mkDerivation rec {
     # 'BSD-like' license but that the 'regex' library (in the ngrep tarball) is
     # GPLv2.
     license = "ngrep";  # Some custom BSD-style, see LICENSE.txt
-    platforms = platforms.linux;
+    platforms = with platforms; linux ++ darwin;
     maintainers = [ maintainers.bjornfor ];
   };
 }