mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
8 lines
268 B
Nix
8 lines
268 B
Nix
{ system ? builtins.currentSystem,
|
|
config ? {},
|
|
pkgs ? import ../../.. { inherit system config; }
|
|
}: {
|
|
fpm = import ./fpm.nix { inherit system pkgs; };
|
|
httpd = import ./httpd.nix { inherit system pkgs; };
|
|
pcre = import ./pcre.nix { inherit system pkgs; };
|
|
}
|