vde2: use python2

This commit is contained in:
Frederik Rietdijk 2016-11-09 13:11:11 +01:00
parent 869cf8a56b
commit 3ebca4f4cf

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, openssl, libpcap, python }:
{ stdenv, fetchurl, openssl, libpcap, python2 }:
stdenv.mkDerivation rec {
name = "vde2-2.3.2";
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2";
};
buildInputs = [ openssl libpcap python ];
buildInputs = [ openssl libpcap python2 ];
hardeningDisable = [ "format" ];