packages/pkgs/snipe-it/composition.nix

15 lines
407 B
Nix
Raw Normal View History

2021-04-15 00:06:29 +02:00
{pkgs ? import <nixpkgs> {
inherit system;
2022-04-14 01:11:43 +02:00
}, system ? builtins.currentSystem, noDev ? false, php ? pkgs.php, phpPackages ? pkgs.phpPackages}:
2021-04-15 00:06:29 +02:00
let
composerEnv = import ./composer-env.nix {
2022-04-14 01:11:43 +02:00
inherit (pkgs) stdenv lib writeTextFile fetchurl unzip;
inherit php phpPackages;
2021-04-15 00:06:29 +02:00
};
in
import ./php-packages.nix {
inherit composerEnv noDev;
inherit (pkgs) fetchurl fetchgit fetchhg fetchsvn;
}