about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/iproute/mptcp.nix
blob: e43af52bb34906fd39924b8abc262d345f6a4617 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib, iproute2, fetchFromGitHub, fetchpatch }:

iproute2.overrideAttrs (oa: rec {
  pname = "iproute_mptcp";
  version = "0.95";

  src = fetchFromGitHub {
    owner = "multipath-tcp";
    repo = "iproute-mptcp";
    rev = "mptcp_v${version}";
    sha256 = "07fihvwlaj0ng8s8sxqhd0a9h1narcnp4ibk88km9cpsd32xv4q3";
  };

  preConfigure = oa.preConfigure + ''
    patchShebangs configure
  '';

  patches = [
    # We override "patches" to never apply any iproute2 patches:
  ] ++ [
    # iproute-mptcp patches:

    # Pull upstream fix for -fno-common toolchain support:
    #   https://github.com/multipath-tcp/iproute-mptcp/pull/8
    (fetchpatch {
      name = "fno-common.patch";
      url = "https://github.com/multipath-tcp/iproute-mptcp/commit/7aebfde8624c978f6f73b03142892f802d21cc0b.patch";
      sha256 = "098402sjdm10r9xggz6naygnfjs74d9k3s2wc2aczx0d2zayhff8";
    })
  ];

  meta = with 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;
  };
})