lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 20 lines 534 B view raw
1{ stdenv, fetchurl, openssl, libpcap, python2 }: 2 3stdenv.mkDerivation rec { 4 name = "vde2-2.3.2"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/vde/vde2/2.3.1/${name}.tar.gz"; 8 sha256 = "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2"; 9 }; 10 11 buildInputs = [ openssl libpcap python2 ]; 12 13 hardeningDisable = [ "format" ]; 14 15 meta = { 16 homepage = http://vde.sourceforge.net/; 17 description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network"; 18 platforms = stdenv.lib.platforms.unix; 19 }; 20}