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

19 lines
501 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, libpcap, python }:
stdenv.mkDerivation rec {
name = "vde2-2.3.2";
src = fetchurl {
url = "mirror://sourceforge/vde/vde2/2.3.1/${name}.tar.gz";
sha256 = "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2";
};
buildInputs = [ openssl libpcap python ];
2015-05-20 21:46:14 +02:00
meta = with stdenv.lib; {
homepage = http://vde.sourceforge.net/;
description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";
2015-05-20 21:46:14 +02:00
platforms = platforms.all;
};
}