mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
varnish: 5.0.0 -> 5.1.2
This commit is contained in:
parent
4b9c089295
commit
a4eb0dc815
@ -1,23 +1,27 @@
|
||||
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline, libedit
|
||||
, python, pythonPackages }:
|
||||
, python, pythonPackages, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "5.0.0";
|
||||
version = "5.1.2";
|
||||
name = "varnish-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://repo.varnish-cache.org/source/${name}.tar.gz";
|
||||
sha256 = "0jizha1mwqk42zmkrh80y07vfl78mg1d9pp5w83qla4xn9ras0ai";
|
||||
sha256 = "1qzwljdwp830l41nw4ils9hxly077zqn6wzhhmy8m516gq9min1r";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [
|
||||
pcre libxslt groff ncurses readline python libedit
|
||||
pythonPackages.docutils
|
||||
pythonPackages.docutils makeWrapper
|
||||
];
|
||||
|
||||
buildFlags = "localstatedir=/var/spool";
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram "$out/sbin/varnishd" --prefix PATH : "${stdenv.lib.makeBinPath [ stdenv.cc ]}"
|
||||
'';
|
||||
|
||||
# https://github.com/varnishcache/varnish-cache/issues/1875
|
||||
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isi686 "-fexcess-precision=standard";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user