about summary refs log tree commit diff
path: root/pkgs/development/libraries/php-xcache/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/php-xcache/default.nix')
-rw-r--r--pkgs/development/libraries/php-xcache/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/php-xcache/default.nix b/pkgs/development/libraries/php-xcache/default.nix
new file mode 100644
index 000000000000..8209d02be56c
--- /dev/null
+++ b/pkgs/development/libraries/php-xcache/default.nix
@@ -0,0 +1,28 @@
+{stdenv, fetchurl, php, autoconf, automake, libtool }:
+
+stdenv.mkDerivation rec {
+  name = "php-xcache-1.3.1";
+  
+  src = fetchurl {
+    url = http://xcache.lighttpd.net/pub/Releases/1.3.1/xcache-1.3.1.tar.bz2;
+    sha256 = "16qj6hns7frs655k2vg9dabnk28085hf6qxhr9dybw6ja5aj24g3";
+  };
+
+  preConfigure = ''
+    phpize
+
+    sed -i 's,^EXTENSION_DIR.*,'EXTENSION_DIR=$out/lib/php/extensions, configure
+  '';
+
+/*
+  configureFlags = [ "--enable-apc" "--enable-apc-mmap" ];
+*/
+
+  buildInputs = [ php autoconf automake libtool ];
+
+  meta = {
+    description = "Fast, stable PHP opcode cacher";
+    homepage = http://xcache.lighttpd.net/;
+    license = "BSD";
+  };
+}