strongSwan needs python for building (Closes #4940)

This commit is contained in:
Igor Pashev 2014-11-22 19:22:21 +01:00
parent 8a6914e659
commit 4f9111e91f

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, gmp, pkgconfig }:
{ stdenv, fetchurl, gmp, pkgconfig, python }:
stdenv.mkDerivation rec {
name = "strongswan-5.2.1";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
dontPatchELF = true;
buildInputs = [ gmp pkgconfig ];
buildInputs = [ gmp pkgconfig python ];
configureFlags = [ "--enable-swanctl" "--enable-cmd" ];