nixpkgs/pkgs/servers/web-apps/bookstack/composition.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
408 B
Nix
Raw Normal View History

2021-01-17 20:08:40 +00:00
{pkgs ? import <nixpkgs> {
inherit system;
2022-07-02 07:44:54 +00:00
}, system ? builtins.currentSystem, noDev ? false, php ? pkgs.php, phpPackages ? pkgs.phpPackages}:
2021-01-17 20:08:40 +00:00
let
composerEnv = import ./composer-env.nix {
2022-07-02 07:44:54 +00:00
inherit (pkgs) stdenv lib writeTextFile fetchurl unzip;
inherit php phpPackages;
2021-01-17 20:08:40 +00:00
};
in
import ./php-packages.nix {
inherit composerEnv noDev;
inherit (pkgs) fetchurl fetchgit fetchhg fetchsvn;
}
2022-07-02 07:44:54 +00:00