a9911c1933
The composer pinned here, was outdated and broken with PHP 7.3, the default in NixOS 19.09
13 lines
359 B
Nix
13 lines
359 B
Nix
{pkgs ? import <nixpkgs> {
|
|
inherit system;
|
|
}, system ? builtins.currentSystem, noDev ? false}:
|
|
|
|
let
|
|
composerEnv = import ./src/Composer2Nix/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;
|
|
}
|