NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
17.46k stars 13.66k forks source link

Package request: nodePackages.@ui5/cli #340952

Open DerArkeN opened 1 week ago

DerArkeN commented 1 week ago

Project description

OpenUI5 Tooling CLI from SAP

Metadata

Add a :+1: reaction to issues you find important.

dotlambda commented 1 week ago

This can easily be packaged using buildNpmPackage by symlinking npm-shrinkwrap.json to package-lock.json.

DerArkeN commented 1 week ago

i tried to do some research on this but tbh i have no clue what you are talking about

dotlambda commented 1 week ago

Just do

postPatch = ''
  ln -s npm-shrinkwrap.json package-lock.json
'';