frigate.web: add missing meta

Seems reasonable to just use that from the parent package.
This commit is contained in:
Andrew Marshall 2025-01-23 08:21:50 -05:00
parent 60e660a084
commit 75188e928f

View File

@ -1,5 +1,6 @@
{
buildNpmPackage,
frigate,
src,
version,
}:
@ -33,4 +34,6 @@ buildNpmPackage {
installPhase = ''
cp -rv dist/ $out
'';
inherit (frigate) meta;
}