nixpkgs/pkgs/servers/http/lighttpd/default.nix

19 lines
481 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pcre, libxml2, zlib, attr, bzip2 }:
stdenv.mkDerivation {
name = "lighttpd-1.4.32";
src = fetchurl {
url = http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.32.tar.xz;
sha256 = "1hgd9bi4mrak732h57na89lqg58b1kkchnddij9gawffd40ghs0k";
};
buildInputs = [ pcre libxml2 zlib attr bzip2 ];
meta = {
description = "Lightweight high-performance web server";
homepage = http://www.lighttpd.net/;
license = "BSD";
};
}