mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
e775f2ddd2
allows to disable MPTCP on specific interfaces.
23 lines
593 B
Nix
23 lines
593 B
Nix
{ 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;
|
|
};
|
|
})
|