about summary refs log tree commit diff
path: root/pkgs/servers/http/lighttpd/default.nix
blob: 5cea1e14548fb767f171ee127e20536b1f03efe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args:
args.stdenv.mkDerivation {
  name = "lighttpd-1.4.19";

  src = args.fetchurl {
    url = http://www.lighttpd.net/download/lighttpd-1.4.19.tar.bz2;
    sha256 = "1mziqb36ik9z4lf1h5ccm1h4ab7d2hx0cz0g5425lwy374r34fd2";
  };

  buildInputs =(with args; [pcre libxml2 zlib attr bzip2]);

  meta = {
      description = "Lightweight high-performance web server";
      homepage = http://www.lighttpd.net/;
      license = "BSD";
  };
}