1
0
Fork 0
selfhostblocks/php/siteconfig.nix
2023-02-19 20:37:52 -08:00

18 lines
262 B
Nix

{ PHPConfig
}:
{ name
, configDir
, configFile
, pkgExtraArguments ? {}
, dependsOn ? {}
}:
rec {
inherit name configDir configFile;
inherit dependsOn;
pkg = PHPConfig ({
inherit configDir configFile;
} // pkgExtraArguments);
type = "fileset";
}