From e775f2ddd2f2ae16534e28eb967e89bafed62183 Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Tue, 11 Jun 2019 23:41:25 +0900 Subject: iproute_mptcp: init at 0.95 allows to disable MPTCP on specific interfaces. --- pkgs/os-specific/linux/iproute/mptcp.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pkgs/os-specific/linux/iproute/mptcp.nix (limited to 'pkgs/os-specific/linux/iproute') diff --git a/pkgs/os-specific/linux/iproute/mptcp.nix b/pkgs/os-specific/linux/iproute/mptcp.nix new file mode 100644 index 00000000000..90503c21c04 --- /dev/null +++ b/pkgs/os-specific/linux/iproute/mptcp.nix @@ -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; + }; +}) -- cgit 1.4.1