This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
fradrive-old/nix/uniworx/node-dependencies.nix
2024-01-14 17:06:02 +01:00

14 lines
428 B
Nix

# SPDX-FileCopyrightText: 2022-2023 Gregor Kleen <gregor@kleen.consulting>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
{ ... }: final: prev: {
uniworxNodeDependencies = prev.mkYarnModules {
pname = "uniworx-node-dependencies";
version = (builtins.fromJSON (builtins.readFile ./../../package.json)).version;
packageJSON = ../../package.json;
yarnLock = ../../yarn.lock;
yarnNix = ../../yarn.nix;
};
}