summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iproute
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2019-06-11 23:41:25 +0900
committerMatthieu Coudron <mattator@gmail.com>2019-06-27 12:00:18 +0900
commite775f2ddd2f2ae16534e28eb967e89bafed62183 (patch)
treefe4b5ba708c24b3321907c1eef2c5b5cdae264a8 /pkgs/os-specific/linux/iproute
parent1046fc2728e7c8ff0a681f181e4396d7a13bbdcd (diff)
downloadnixpkgs-e775f2ddd2f2ae16534e28eb967e89bafed62183.tar
nixpkgs-e775f2ddd2f2ae16534e28eb967e89bafed62183.tar.gz
nixpkgs-e775f2ddd2f2ae16534e28eb967e89bafed62183.tar.bz2
nixpkgs-e775f2ddd2f2ae16534e28eb967e89bafed62183.tar.lz
nixpkgs-e775f2ddd2f2ae16534e28eb967e89bafed62183.tar.xz
nixpkgs-e775f2ddd2f2ae16534e28eb967e89bafed62183.tar.zst
nixpkgs-e775f2ddd2f2ae16534e28eb967e89bafed62183.zip
iproute_mptcp: init at 0.95
allows to disable MPTCP on specific interfaces.
Diffstat (limited to 'pkgs/os-specific/linux/iproute')
-rw-r--r--pkgs/os-specific/linux/iproute/mptcp.nix22
1 files changed, 22 insertions, 0 deletions
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;
+  };
+})