1
0
Fork 0
selfhostblocks/php/siteconfig.nix

19 lines
262 B
Nix
Raw Normal View History

2022-10-04 09:08:51 +02:00
{ PHPConfig
}:
{ name
, configDir
, configFile
, pkgExtraArguments ? {}
, dependsOn ? {}
}:
rec {
inherit name configDir configFile;
inherit dependsOn;
pkg = PHPConfig ({
inherit configDir configFile;
} // pkgExtraArguments);
type = "fileset";
}