2020-08-21 05:14:52 +08:00
|
|
|
{pkgs ? import <nixpkgs> {
|
|
|
|
inherit system;
|
|
|
|
}, system ? builtins.currentSystem, noDev ? false}:
|
|
|
|
|
|
|
|
let
|
|
|
|
composerEnv = import ./composer-env.nix {
|
2021-04-05 14:20:26 +08:00
|
|
|
inherit (pkgs) stdenv lib writeTextFile fetchurl php unzip phpPackages;
|
2020-08-21 05:14:52 +08:00
|
|
|
};
|
|
|
|
in
|
|
|
|
import ./php-packages.nix {
|
|
|
|
inherit composerEnv noDev;
|
|
|
|
inherit (pkgs) fetchurl fetchgit fetchhg fetchsvn;
|
2021-04-05 14:20:26 +08:00
|
|
|
}
|