summary refs log tree commit diff
path: root/pkgs/os-specific/linux/net-tools
diff options
context:
space:
mode:
authorMatthieu Coudron <mcoudron@hotmail.com>2022-10-03 14:40:12 +0200
committerMatthieu Coudron <teto@users.noreply.github.com>2022-10-07 23:14:30 +0200
commita3f854aef368fb5c13fdf1477a546f93c20b683c (patch)
tree528bdfe46db05302d6fee922cd0194d876a8094c /pkgs/os-specific/linux/net-tools
parent151fcb720c63322980b5b3c8f7dfbd39fc7a71e0 (diff)
downloadnixpkgs-a3f854aef368fb5c13fdf1477a546f93c20b683c.tar
nixpkgs-a3f854aef368fb5c13fdf1477a546f93c20b683c.tar.gz
nixpkgs-a3f854aef368fb5c13fdf1477a546f93c20b683c.tar.bz2
nixpkgs-a3f854aef368fb5c13fdf1477a546f93c20b683c.tar.lz
nixpkgs-a3f854aef368fb5c13fdf1477a546f93c20b683c.tar.xz
nixpkgs-a3f854aef368fb5c13fdf1477a546f93c20b683c.tar.zst
nixpkgs-a3f854aef368fb5c13fdf1477a546f93c20b683c.zip
linux_mptcp,linux_mptcp_95: remove out-of-tree mptcp kernel
Multipath tcp (mptcp) is now part of the official linux kernel. The
official kernel still lacks features compared to this out of tree ones
but considering the userbase, I dont see any compelling reason.
I keep using that kernel and those utilities so they will stay packaged
at https://github.com/teto/mptcp-flake where they wont annoy the whole
nixpkgs crowd that doesn't care about it.
Diffstat (limited to 'pkgs/os-specific/linux/net-tools')
-rw-r--r--pkgs/os-specific/linux/net-tools/mptcp.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/os-specific/linux/net-tools/mptcp.nix b/pkgs/os-specific/linux/net-tools/mptcp.nix
deleted file mode 100644
index b4ce59a7c68..00000000000
--- a/pkgs/os-specific/linux/net-tools/mptcp.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ lib, nettools, fetchFromGitHub  }:
-
-nettools.overrideAttrs(oa: rec {
-  pname = "net-tools-mptcp";
-  version = "0.95";
-
-  src = fetchFromGitHub {
-    owner = "multipath-tcp";
-    repo = "net-tools";
-    rev = "mptcp_v${version}";
-    sha256 = "0i7gr1y699nc7j9qllsx8kicqkpkhw51x4chcmyl5xs06b2mdjri";
-  };
-
-  meta = with lib; {
-    homepage = "https://github.com/multipath-tcp/net-tools";
-    description = "A set of tools for controlling the network subsystem in Linux";
-    license = licenses.gpl2Plus;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ teto ];
-  };
-})