1
0
Fork 0
selfhostblocks/ttrss/mk-normalize-headers.nix

15 lines
244 B
Nix
Raw Normal View History

2022-10-04 09:08:51 +02:00
{ TtrssPHPNormalizeHeaders
}:
{ name
, configDir ? "/etc/php"
, configFile ? "normalize-headers.php"
}:
rec {
inherit name configDir configFile;
pkg = TtrssPHPNormalizeHeaders {
inherit configDir configFile;
};
type = "fileset";
}