mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
Add memcache php module
This commit is contained in:
parent
fa5a583098
commit
d4c711ee1d
9
pkgs/build-support/build-pecl.nix
Normal file
9
pkgs/build-support/build-pecl.nix
Normal 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";
|
||||||
|
})
|
|
@ -3267,6 +3267,10 @@ let
|
||||||
|
|
||||||
php = php54;
|
php = php54;
|
||||||
|
|
||||||
|
phpPackages = import ./php-packages.nix {
|
||||||
|
inherit php pkgs;
|
||||||
|
};
|
||||||
|
|
||||||
php53 = callPackage ../development/interpreters/php/5.3.nix { };
|
php53 = callPackage ../development/interpreters/php/5.3.nix { };
|
||||||
|
|
||||||
php54 = callPackage ../development/interpreters/php/5.4.nix { };
|
php54 = callPackage ../development/interpreters/php/5.4.nix { };
|
||||||
|
|
19
pkgs/top-level/php-packages.nix
Normal file
19
pkgs/top-level/php-packages.nix
Normal 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
|
Loading…
Reference in a new issue