varnish module: remove unneeded gcc runtime dependency

This commit is contained in:
Eric Sagnes 2017-05-16 23:00:06 +09:00 committed by Rok Garbas
parent a4eb0dc815
commit 5b30f246cb

View File

@ -49,7 +49,6 @@ with lib;
postStop = ''
rm -rf ${cfg.stateDir}
'';
path = [ pkgs.gcc ];
serviceConfig.ExecStart = "${pkgs.varnish}/sbin/varnishd -a ${cfg.http_address} -f ${pkgs.writeText "default.vcl" cfg.config} -n ${cfg.stateDir} -u varnish";
serviceConfig.Type = "forking";
};