| 12 Oct 2023 |
I use NixOS btw | oh wait I just had to override installPhase, nvm | 12:05:40 |
jfvillablanca | hi, i am trying to package nativescript-cli with buildNpmPackage, i get an error
> npm ERR! code: 'MODULE_NOT_FOUND',
> npm ERR! requireStack: [ '/build/source/postinstall.js' ]
checking the repo, postinstall.js is at root of the directory. so I assume i need some preBuild hook to move postInstall.js to /build/source. Am I correct?
| 12:47:52 |
Lily Foster | In reply to @jfvillablanca:matrix.org
hi, i am trying to package nativescript-cli with buildNpmPackage, i get an error
> npm ERR! code: 'MODULE_NOT_FOUND',
> npm ERR! requireStack: [ '/build/source/postinstall.js' ]
checking the repo, postinstall.js is at root of the directory. so I assume i need some preBuild hook to move postInstall.js to /build/source. Am I correct?
Can you share full log? That copy is already done for your in unpackPhase | 12:52:04 |
jfvillablanca | https://pastebin.com/0MsCVDKv
there are some weird characters in there, maybe from the redirect to the log file | 12:57:26 |
Lily Foster | This is the more relevant error:
Error: Cannot find module '/build/source/lib/constants'
| 13:02:06 |
Lily Foster | Can you get another log with npmFlags = [ "--loglevel=verbose" ] on the derivation? | 13:04:15 |
jfvillablanca | https://pastebin.com/d4mbWiS7 | 13:12:20 |
| 13 Oct 2023 |
| @ThorHop:matrix.org changed their display name from hopland (glib gary) to hopland (flaky frank). | 10:27:20 |
@ThorHop:matrix.org | So the last couple of days I've been trying to package the statics website generated from an npm process, but I keep getting the error:
error: builder for '/nix/store/g088r2wpqbbchsjcrs5gynkhdqjpfkf4-innleder-npm-deps.drv' failed with exit code 1;
last 10 log lines:
> node_modules/@types/estree
> node_modules/@types/mdast
> node_modules/@jridgewell/gen-mapping
> node_modules/@jridgewell/resolve-uri
> node_modules/@jridgewell/set-array
> node_modules/@jridgewell/sourcemap-codec
> Error: unknown error
>
> Caused by:
> [55] Failed sending data to the peer
| 14:02:58 |
@ThorHop:matrix.org | Lily Foster Is this still due to that PR you've been waiting on? | 14:03:13 |
Cobalt | Looks like it, that's at least the same error code | 14:08:08 |
@ThorHop:matrix.org | I hope so, because I've been slamming my head against the wall with learning this process the last couple of days ^^; might have to upload my flake and nix files just to make sure it isn't my sucky programming "skills". | 14:12:01 |
Lily Foster | What channel are you on? | 14:12:57 |
Lily Foster | Oh the fix hasn't hit unstable yet anyway | 14:13:35 |
Lily Foster | https://nixpk.gs/pr-tracker.html?pr=260011 | 14:13:39 |
@ThorHop:matrix.org | That's the one ^^; guess I gotta wait a lil bit. | 14:14:06 |
@ThorHop:matrix.org | Should I try with the small one maybe? | 14:14:35 |
@ThorHop:matrix.org | Lily Foster Wait, do you mean system wide (i.e the one I have running) or for the flake? I am using nixpkgs-unstable as the input. | 14:15:57 |
Lily Foster | In reply to @ThorHop:matrix.org Lily Foster Wait, do you mean system wide (i.e the one I have running) or for the flake? I am using nixpkgs-unstable as the input. Flake | 14:21:11 |
@ThorHop:matrix.org | nixpkgs-unstable | 14:22:22 |
Lily Foster | Yeah you could just wait on channel update or temporarily switch to master, fetch once, and then you can switch back since the cached npm deps will already be in nix store then | 14:28:35 |
@ThorHop:matrix.org | Now I'm getting an error sharp: Are you trying to install as a root or sudo user?. Apparently sharp tries to download a binary? | 15:47:52 |
@ThorHop:matrix.org | * Now I'm getting an error sharp: Installation error: EACCES: permission denied. Apparently sharp tries to download a binary and nix doesn't like that? | 15:48:29 |
Lily Foster | In reply to @ThorHop:matrix.org Now I'm getting an error sharp: Installation error: EACCES: permission denied. Apparently sharp tries to download a binary and nix doesn't like that? You need pkgs-config in nativeBuildInputs and vips in buildInputs if sharp is a dep | 15:50:06 |
Lily Foster | That prevents it from downloading binary and it builds it instead | 15:50:16 |
Lily Foster | We need to document "common dependency quirks" like that somewhere... | 15:50:50 |
Cobalt | In reply to @lily:lily.flowers We need to document "common dependency quirks" like that somewhere... I don't know if that's possible but it would also be a big Qol thing to include common requirements, like poetry2nix, for, e.g., pkg-config, openssl, ... that are automatically applied when needed. | 15:52:33 |
Lily Foster | (hey if anyone likes writing docs and wants to join the nixpkgs nodejs team (pls i need more people to work with ðŸ˜)) | 15:52:40 |
Cobalt | It's a pain to figure out at the beginning why node-gyp fails to build yet another transitive dependency | 15:53:17 |
Lily Foster | In reply to @c0ba1t:matrix.org It's a pain to figure out at the beginning why node-gyp fails to build yet another transitive dependency Tbh i've thought about just having buildNpmPackage default to including python3 in nativeBuildInputs for that reason | 15:53:58 |