core/pkgs/by-name/ne/nettools/packages.nix

10 lines
132 B
Nix
Raw Normal View History

2024-05-14 02:37:40 +00:00
{ ... }:
res: pkgs: super:
with pkgs;
{
nettools = if stdenv.isLinux
then callPackage ./. { }
else unixtools.nettools;
}