iproute_mptcp: init at 0.95
allows to disable MPTCP on specific interfaces.
This commit is contained in:
parent
1046fc2728
commit
e775f2ddd2
22
pkgs/os-specific/linux/iproute/mptcp.nix
Normal file
22
pkgs/os-specific/linux/iproute/mptcp.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, iproute, fetchFromGitHub }:
|
||||||
|
|
||||||
|
iproute.overrideAttrs (oa: rec {
|
||||||
|
pname = "iproute_mptcp";
|
||||||
|
version = "0.95";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "multipath-tcp";
|
||||||
|
repo = "iproute-mptcp";
|
||||||
|
rev = "mptcp_v${version}";
|
||||||
|
sha256 = "07fihvwlaj0ng8s8sxqhd0a9h1narcnp4ibk88km9cpsd32xv4q3";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/multipath-tcp/iproute-mptcp;
|
||||||
|
description = "IP-Route extensions for MultiPath TCP";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ teto ];
|
||||||
|
priority = 2;
|
||||||
|
};
|
||||||
|
})
|
@ -15205,6 +15205,8 @@ in
|
|||||||
|
|
||||||
iproute = callPackage ../os-specific/linux/iproute { };
|
iproute = callPackage ../os-specific/linux/iproute { };
|
||||||
|
|
||||||
|
iproute_mptcp = callPackage ../os-specific/linux/iproute/mptcp.nix { };
|
||||||
|
|
||||||
iputils = callPackage ../os-specific/linux/iputils { };
|
iputils = callPackage ../os-specific/linux/iputils { };
|
||||||
|
|
||||||
iptables = callPackage ../os-specific/linux/iptables { };
|
iptables = callPackage ../os-specific/linux/iptables { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user