about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-09-24 00:42:50 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-09-24 00:42:50 +0000
commitffd1f5000b9f242eec99ba6ee5fb7d60fb8aa041 (patch)
treeb3cd2332f7ef5f22c51ca6b4dd320c8429fd6adc /pkgs/servers
parentd326561aaf3e51f283a325aee133ff88f3aa2dfa (diff)
added lighthttpd
svn path=/nixpkgs/trunk/; revision=12907
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/http/lighttpd/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/servers/http/lighttpd/default.nix b/pkgs/servers/http/lighttpd/default.nix
new file mode 100644
index 0000000000000..5cea1e14548fb
--- /dev/null
+++ b/pkgs/servers/http/lighttpd/default.nix
@@ -0,0 +1,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";
+  };
+}