mirror of
https://codeberg.org/demostf/frontend.git
synced 2026-06-04 02:34:13 +02:00
12 lines
181 B
Nix
12 lines
181 B
Nix
{ npmlock2nix
|
|
, nodejs_20
|
|
, lib
|
|
,
|
|
}:
|
|
let
|
|
inherit (lib.sources) sourceByRegex;
|
|
in
|
|
npmlock2nix.v2.node_modules {
|
|
src = sourceByRegex ../. [ "package.*" ];
|
|
nodejs = nodejs_20;
|
|
}
|