repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python312Packages.kneaddata: init at 0.7.7-alpha (#340230)
[NixPkgs.git]
/
nixos
/
tests
/
php
/
default.nix
blob
9d9f23d6f051ba7daeabd35368f4ae29d2e5c141
1
{
2
system ? builtins.currentSystem,
3
config ? { },
4
pkgs ? import ../../.. { inherit system config; },
5
php ? pkgs.php,
6
}:
7
8
let
9
php' = php.buildEnv {
10
extensions = { enabled, all }: with all; enabled ++ [ apcu ];
11
};
12
in
13
{
14
fpm = import ./fpm.nix {
15
inherit system pkgs;
16
php = php';
17
};
18
httpd = import ./httpd.nix {
19
inherit system pkgs;
20
php = php';
21
};
22
pcre = import ./pcre.nix {
23
inherit system pkgs;
24
php = php';
25
};
26
}