Add memcache php module

This commit is contained in:
Shea Levy 2014-03-24 08:37:36 -04:00
parent fa5a583098
commit d4c711ee1d
3 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ stdenv, php, autoreconfHook }:
args: stdenv.mkDerivation (args // {
buildInputs = [ php autoreconfHook ] ++ args.buildInputs or [];
makeFlags = [ "EXTENSION_DIR=$(out)/lib/php/extensions" ] ++ args.makeFlags or [];
autoreconfPhase = "phpize";
})

View file

@ -3267,6 +3267,10 @@ let
php = php54;
phpPackages = import ./php-packages.nix {
inherit php pkgs;
};
php53 = callPackage ../development/interpreters/php/5.3.nix { };
php54 = callPackage ../development/interpreters/php/5.4.nix { };

View file

@ -0,0 +1,19 @@
{ pkgs, php }:
let self = with self; {
buildPecl = import ../build-support/build-pecl.nix {
inherit php;
inherit (pkgs) stdenv autoreconfHook;
};
memcache = buildPecl {
name = "memcache-3.0.8";
src = pkgs.fetchurl {
url = http://pecl.php.net/get/memcache-3.0.8.tgz;
sha256 = "04c35rj0cvq5ygn2jgmyvqcb0k8d03v4k642b6i37zgv7x15pbic";
};
configureFlags = "--with-zlib-dir=${pkgs.zlib}";
};
}; in self