diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2022-07-20 12:20:34 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-07-20 16:50:08 +0200 |
commit | 1b323c58c8730d0d7be6792846193c227112bd7d (patch) | |
tree | ce49e16930a24e8ab622a947e8c7fbd5765efd49 /gnu | |
parent | cf8319d17d195b565ab2c588c0aac55dde11c5ea (diff) |
gnu: Add node-crx3.
* gnu/packages/node-xyz.scm (node-crx3): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/node-xyz.scm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index b620607418..b14b407e19 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -106,6 +106,43 @@ and fancy character sets, signed or unsigned data and has tests, for Node.") "This package provides a JSON list with color names and their values.") (license license:expat))) +(define-public node-crx3 + (package + (name "node-crx3") + (version "1.1.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ahwayakchih/crx3") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1snqyw8c3s9p2clhqh1172z0rs1was36sfxkk6acgpar32c2rwzw")))) + (build-system node-build-system) + (arguments + '(#:tests? #f + #:phases (modify-phases %standard-phases + (add-after 'unpack 'replace-mri-by-minimist + (lambda _ + (substitute* "package.json" + (("\"mri\": \"\\^1\\.1\\.6\",") + "\"minimist\": \"^1.2.6\",")) + (substitute* "lib/configuration.js" + (("mri") + "minimist")))) + (replace 'configure + (lambda _ + (invoke "npm" "--offline" "--ignore-scripts" "install" + "--production")))))) + (inputs (list node-minimist node-pbf node-yazl)) + (home-page "https://github.com/ahwayakchih/crx3") + (synopsis "Create CRXv3 browser extensions with Javascript") + (description + "This package creates web extension files (CRXv3) for Chromium versions +64.0.3242 and above and all other browsers supporting the file format and API.") + (license license:bsd-3))) + (define-public node-env-variable (package (name "node-env-variable") |