mirror of
https://codeberg.org/demostf/frontend.git
synced 2026-06-03 10:14:13 +02:00
11 lines
192 B
Nix
11 lines
192 B
Nix
{
|
|
importNpmLock,
|
|
nodejs,
|
|
lib,
|
|
}: let
|
|
inherit (lib.sources) sourceByRegex;
|
|
in
|
|
importNpmLock.buildNodeModules {
|
|
inherit nodejs;
|
|
npmRoot = sourceByRegex ../. ["package.*"];
|
|
}
|