about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/web-apps/bookstack/composition.nix
blob: 0df6cdae4cf089c810d2e8128f7363453d354a6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{pkgs ? import <nixpkgs> {
    inherit system;
  }, system ? builtins.currentSystem, noDev ? false}:

let
  composerEnv = import ./composer-env.nix {
    inherit (pkgs) stdenv lib writeTextFile fetchurl php unzip phpPackages;
  };
in
import ./php-packages.nix {
  inherit composerEnv noDev;
  inherit (pkgs) fetchurl fetchgit fetchhg fetchsvn;
}