package.json contains this line
"wicked-good-xpath": "git+https://git@github.com/zotero/wicked-good-xpath.git#1b88459",
Which nix's buildNpmPackage recognises as an ssh url and thereby errors.
I'm not experienced in packaging with npm, but I expect that line should omit the git@ and just look like.
"wicked-good-xpath": "git+https://github.com/zotero/wicked-good-xpath.git#1b88459",
That at least works in my fork of this repo that contains the said flake.nix.
If this could be patched here, then I'd have less of a need to maintain my own fork and could just have a separate flake that points to this github.
(I can also patch inside of my flake, but that process is a bit fickle though I might fall back to that if this is not or can not be addressed.)
package.jsoncontains this lineWhich nix's
buildNpmPackagerecognises as an ssh url and thereby errors.I'm not experienced in packaging with
npm, but I expect that line should omit thegit@and just look like.That at least works in my fork of this repo that contains the said flake.nix.
If this could be patched here, then I'd have less of a need to maintain my own fork and could just have a separate flake that points to this github.
(I can also patch inside of my flake, but that process is a bit fickle though I might fall back to that if this is not or can not be addressed.)