varnish: use python2

This commit is contained in:
rnhmjoj 2018-06-03 11:24:14 +02:00
parent 0683a72e35
commit 0b488f49fd
No known key found for this signature in database
GPG key ID: 91BE884FBA4B591A

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline, libedit
, python, pythonPackages, makeWrapper }:
, python2, makeWrapper }:
let
common = { version, sha256 }:
@ -13,8 +13,8 @@ let
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
pcre libxslt groff ncurses readline python libedit
pythonPackages.docutils makeWrapper
pcre libxslt groff ncurses readline python2 libedit
python2.pkgs.docutils makeWrapper
];
buildFlags = "localstatedir=/var/spool";