nixpkgs/pkgs/servers/http/nginx/default.nix
Peter Simons 6492a0383d nginx: moved from sbin to bin, because it's useful for normal users too
Committed on behalf of Mathijs Kwik.

svn path=/nixpkgs/trunk/; revision=32407
2012-02-19 21:36:34 +00:00

38 lines
978 B
Nix

{ stdenv, fetchurl, openssl, zlib, pcre, libxml2, libxslt }:
stdenv.mkDerivation rec {
name = "nginx-1.1.7";
src = fetchurl {
url = "http://nginx.org/download/${name}.tar.gz";
sha256 = "1y0bzmrgnyqw8ghc508nipy5k46byrxc2sycqp35fdx0jmjz3h51";
};
buildInputs = [ openssl zlib pcre libxml2 libxslt ];
configureFlags = [
"--with-http_ssl_module"
"--with-http_xslt_module"
"--with-http_sub_module"
"--with-http_dav_module"
"--with-http_gzip_static_module"
"--with-http_secure_link_module"
# Install destination problems
# "--with-http_perl_module"
];
preConfigure = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libxml2}/include/libxml2"
'';
postInstall = ''
mv $out/sbin $out/bin
'';
meta = {
description = "nginx - 'engine x' - reverse proxy and lightweight webserver";
maintainers = [
stdenv.lib.maintainers.raskin
];
platforms = with stdenv.lib.platforms;
all;
};
}