summary refs log tree commit diff
path: root/pkgs/tools/networking/vde2/default.nix
blob: 4ea09cd7f006f3dfe15422d8923f9046235938ac (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
{ stdenv, fetchurl, fetchpatch, openssl, libpcap, python2, withPython ? false }:

stdenv.mkDerivation rec {
  name = "vde2-2.3.2";

  src = fetchurl {
    url = "mirror://sourceforge/vde/vde2/2.3.1/${name}.tar.gz";
    sha256 = "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2";
  };

  patches = stdenv.lib.optional stdenv.hostPlatform.isMusl (
    fetchpatch {
      url = "https://git.alpinelinux.org/cgit/aports/plain/main/vde2/musl-build-fix.patch?id=ddee2f86a48e087867d4a2c12849b2e3baccc238";
      sha256 = "0b5382v541bkxhqylilcy34bh83ag96g71f39m070jzvi84kx8af";
    }
  );

  configureFlags = stdenv.lib.optional (!withPython) [ "--disable-python" ];

  buildInputs = [ openssl libpcap ]
    ++ stdenv.lib.optional withPython python2;

  hardeningDisable = [ "format" ];

  meta = with stdenv.lib; {
    homepage = http://vde.sourceforge.net/;
    description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";
    platforms = platforms.unix;
    license = licenses.gpl2;
  };
}