diff options
| author | Maxim Cournoyer <maxim@guixotic.coop> | 2026-06-11 10:53:53 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2026-06-24 14:50:55 +0900 |
| commit | 59e1d0a892a0fcc379d2a59439b0ace055807297 (patch) | |
| tree | 6ddcd651f21551ad16221958885586b9e0643773 /gnu | |
| parent | bc57d203744906016c949aed679217fbf60a4c45 (diff) | |
gnu: Add node-vscode-l10n.
* gnu/packages/node-xyz.scm (node-vscode-l10n): New variable.
Change-Id: Iffc2b2b84529d1f1a9d260743818b7cf5a2db0f5
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/node-xyz.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index 278e1d81dba..f3357aced65 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm | |||
| @@ -4540,6 +4540,37 @@ use with WebSocket implementations.") | |||
| 4540 | function with browser support.") | 4540 | function with browser support.") |
| 4541 | (license license:expat))) | 4541 | (license license:expat))) |
| 4542 | 4542 | ||
| 4543 | (define-public node-vscode-l10n | ||
| 4544 | (package | ||
| 4545 | (name "node-vscode-l10n") | ||
| 4546 | (version "0.0.18") | ||
| 4547 | (source | ||
| 4548 | (origin | ||
| 4549 | (method git-fetch) | ||
| 4550 | (uri (git-reference | ||
| 4551 | (url "https://github.com/microsoft/vscode-l10n") | ||
| 4552 | (commit (string-append "l10n/v" version)))) | ||
| 4553 | (file-name (git-file-name name version)) | ||
| 4554 | (sha256 | ||
| 4555 | (base32 | ||
| 4556 | "1jya3ifid52vbq4xw10jjkym3rcxc9xivzas3m42i31sh9wma1xc")))) | ||
| 4557 | (build-system node-build-system) | ||
| 4558 | (arguments | ||
| 4559 | (list | ||
| 4560 | #:tests? #f ;requires jest | ||
| 4561 | #:phases | ||
| 4562 | #~(modify-phases %standard-phases | ||
| 4563 | (add-after 'patch-dependencies 'delete-dev-dependencies | ||
| 4564 | (lambda _ | ||
| 4565 | (modify-json (delete-dev-dependencies) | ||
| 4566 | (replace-fields | ||
| 4567 | '(("scripts.install:l10n-dev" . "true"))))))))) | ||
| 4568 | (home-page "https://github.com/Microsoft/vscode-l10n") | ||
| 4569 | (synopsis "Helper library to assist in localizing VS Code subprocesses") | ||
| 4570 | (description"This package provides a helper library to assist in | ||
| 4571 | localizing sub-processes spawned by VS Code extensions.") | ||
| 4572 | (license license:expat))) | ||
| 4573 | |||
| 4543 | (define-public node-which | 4574 | (define-public node-which |
| 4544 | (package | 4575 | (package |
| 4545 | (name "node-which") | 4576 | (name "node-which") |
