python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / vde2 / default.nix
blob83cee2e466af57a05e1e976c69eebb0a0d3a0426
1 { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, libpcap, wolfssl }:
3 stdenv.mkDerivation rec {
4   pname = "vde2";
5   version = "2.3.3";
7   src = fetchFromGitHub {
8     owner = "virtualsquare";
9     repo = "vde-2";
10     rev = "v${version}";
11     sha256 = "sha256-Yf6QB7j5lYld2XtqhYspK4037lTtimoFc7nCavCP+mU=";
12   };
14   patches = lib.optionals stdenv.hostPlatform.isMusl [
15     (fetchpatch {
16       url = "https://git.alpinelinux.org/aports/plain/main/vde2/musl-build-fix.patch?id=ddee2f86a48e087867d4a2c12849b2e3baccc238";
17       sha256 = "0b5382v541bkxhqylilcy34bh83ag96g71f39m070jzvi84kx8af";
18     })
19   ];
21   preConfigure = lib.optionalString (lib.versionAtLeast stdenv.hostPlatform.darwinMinVersion "11") ''
22     MACOSX_DEPLOYMENT_TARGET=10.16
23   '';
25   nativeBuildInputs = [ autoreconfHook ];
27   buildInputs = [ libpcap wolfssl ];
29   meta = with lib; {
30     homepage = "https://github.com/virtualsquare/vde-2";
31     description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";
32     platforms = platforms.unix;
33     license = licenses.gpl2;
34   };