nixpkgs/pkgs/tools/networking/vde2/default.nix

30 lines
879 B
Nix
Raw Normal View History

2018-03-25 03:16:02 +01:00
{ stdenv, fetchurl, fetchpatch, openssl, libpcap, python2 }:
stdenv.mkDerivation rec {
name = "vde2-2.3.2";
src = fetchurl {
url = "mirror://sourceforge/vde/vde2/2.3.1/${name}.tar.gz";
sha256 = "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2";
};
2018-03-25 03:16:02 +01:00
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";
}
);
2016-11-09 12:11:11 +00:00
buildInputs = [ openssl libpcap python2 ];
hardeningDisable = [ "format" ];
2015-12-23 01:59:47 +00:00
2018-09-10 20:49:56 +01:00
meta = with stdenv.lib; {
homepage = http://vde.sourceforge.net/;
description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";
2018-09-10 20:49:56 +01:00
platforms = platforms.unix;
license = licenses.gpl2;
};
}