Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nettools_mptcp: init at 0.95

Adds an -m flag to track MPTCP connection.

+23
+21
pkgs/os-specific/linux/net-tools/mptcp.nix
··· 1 + { stdenv, nettools, fetchFromGitHub }: 2 + 3 + nettools.overrideAttrs(oa: rec { 4 + name = "net-tools-mptcp"; 5 + version = "0.95"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "multipath-tcp"; 9 + repo = "net-tools"; 10 + rev = "mptcp_v${version}"; 11 + sha256 = "0i7gr1y699nc7j9qllsx8kicqkpkhw51x4chcmyl5xs06b2mdjri"; 12 + }; 13 + 14 + meta = with stdenv.lib; { 15 + homepage = https://github.com/multipath-tcp/net-tools; 16 + description = "A set of tools for controlling the network subsystem in Linux"; 17 + license = licenses.gpl2Plus; 18 + platforms = platforms.linux; 19 + maintainers = with maintainers; [ teto ]; 20 + }; 21 + })
+2
pkgs/top-level/all-packages.nix
··· 15728 15728 nettools = if stdenv.isLinux then callPackage ../os-specific/linux/net-tools { } 15729 15729 else unixtools.nettools; 15730 15730 15731 + nettools_mptcp = callPackage ../os-specific/linux/net-tools/mptcp.nix { }; 15732 + 15731 15733 nftables = callPackage ../os-specific/linux/nftables { }; 15732 15734 15733 15735 noah = callPackage ../os-specific/darwin/noah {