mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
8 lines
213 B
Nix
8 lines
213 B
Nix
{ system ? builtins.currentSystem,
|
|
config ? {},
|
|
pkgs ? import ../../.. { inherit system config; }
|
|
}: {
|
|
fpm = import ./fpm.nix { inherit system pkgs; };
|
|
pcre = import ./pcre.nix { inherit system pkgs; };
|
|
}
|