13 lines
341 B
Nix
13 lines
341 B
Nix
|
{pkgs ? import <nixpkgs> {
|
||
|
inherit system;
|
||
|
}, system ? builtins.currentSystem, noDev ? false}:
|
||
|
|
||
|
let
|
||
|
composerEnv = import ./composer-env.nix {
|
||
|
inherit (pkgs) stdenv writeTextFile fetchurl php unzip phpPackages;
|
||
|
};
|
||
|
in
|
||
|
import ./php-packages.nix {
|
||
|
inherit composerEnv noDev;
|
||
|
inherit (pkgs) fetchurl fetchgit fetchhg fetchsvn;
|
||
|
}
|