| 4 Dec 2024 |
Tomodachi94 (they/them) | In reply to@pyrox:pyrox.dev so we need to find some way to store lockfiles where we can pull them and not hit ifd that's also outside of nixpkgs Or convince him to include lockfiles 🙃 | 15:50:01 |
dish [Fox/It/She] | In reply to @tomodachi94:matrix.org Or convince him to include lockfiles 🙃 prob won't happen cuz so many packages of his haven't been touched in years 🥴 | 16:07:36 |
dish [Fox/It/She] | ugh the tailwind libraries are used by a single thing in-tree(emanote) and idk what to do to fix them 🙃 | 20:35:01 |
| 5 Dec 2024 |
| Toma joined the room. | 18:43:49 |
Toma | Anyone know how one can fix the missing symbol errors for electron-based applications?
One of the .node files can't find a symbol: undefined symbol: _ZN2v89Exception9TypeErrorENS_5LocalINS_6StringEEE
Looks like the bin/node executable has that symbol, but the libexec/electron executable only has a different, but similar symbol:
_ZN2v89Exception9TypeErrorENS_5LocalINS_6StringEEENS1_INS_5ValueEEE
How can these ABI difference issues be resolved?
| 19:25:26 |
Toma | Okay, I just probably have to useelectron-rebuild properly. Will experiment a bit | 20:22:51 |
| 6 Dec 2024 |
Tomodachi94 (they/them) | @dish [Fox/It/She] I started a nixpkgs-review run for all of your nodePackages PRs (and the msrestazure ones). I'll be away for about two hours but it should automatically comment on the PRs as the builds finish | 02:54:06 |
Tomodachi94 (they/them) | @dish [Fox/It/She] I started a nixpkgs-review run for all of your nodePackages PRs (and the msrestazure ones). I'll be away for about two hours but it should automatically comment on the PRs as the builds finish. I'll take a peek probably later tonight or perhaps tomorrow | 02:54:49 |
Tomodachi94 (they/them) | @dish [Fox/It/She] I started a nixpkgs-review run for all of your nodePackages PRs (and the msrestazure ones). I'll be away for about two hours but it should automatically comment on the PRs as the builds finish. I'll take a peek probably later tonight or perhaps tomorrow, if time allows | 06:03:33 |
| 7 Dec 2024 |
| fsagbuya joined the room. | 03:23:44 |
fsagbuya | Hi. I'm trying to build mattermost webapp from source but keep running into thenpm error code ENOTCACHED. This happens even though I'm using a package-lock.json file that includes the resolved and integrity fields.
Here is Nix my derivation:
{
lib,
buildNpmPackage,
fetchFromGitHub
}:
buildNpmPackage rec {
pname = "mattermost-webbapp";
version = "9.11.5";
src = fetchFromGitHub {
owner = "mattermost";
repo = "mattermost";
rev = "v${version}";
hash = "sha256-bLZFeG6kBVP0ws50wtBam/bO206sQnz6va8PATAoRAQ=";
};
sourceRoot = "${src.name}/webapp";
patches = [./fix-package-lock-json.patch ];
dontNpmBuild = true;
makeCacheWritable = true;
forceGitDeps = true;
npmDepsHash = "sha256-ODlqjBZIrvZXtxtIG/CLISf2faAGG1bwFmgd0aUECOQ=";
Can you help me understand why this error is occurring and how I can resolve it?
| 03:45:00 |
fsagbuya | * Hi. I'm trying to build mattermost webapp from source but keep running into the npm error code ENOTCACHED. This happens even though I'm using a package-lock.json file that includes the resolved and integrity fields.
Here is Nix my derivation:
{
lib,
buildNpmPackage,
fetchFromGitHub
}:
buildNpmPackage rec {
pname = "mattermost-webbapp";
version = "9.11.5";
src = fetchFromGitHub {
owner = "mattermost";
repo = "mattermost";
rev = "v${version}";
hash = "sha256-bLZFeG6kBVP0ws50wtBam/bO206sQnz6va8PATAoRAQ=";
};
sourceRoot = "${src.name}/webapp";
patches = [./fix-package-lock-json.patch ];
dontNpmBuild = true;
makeCacheWritable = true;
forceGitDeps = true;
npmDepsHash = "sha256-ODlqjBZIrvZXtxtIG/CLISf2faAGG1bwFmgd0aUECOQ=";
Can you help me understand why this error is occurring and how I can resolve it?
| 03:45:46 |
fsagbuya | * Hi. I'm trying to build mattermost webapp from source but keep running into the npm error code ENOTCACHED. This happens even though I'm using a package-lock.json file that includes the resolved and integrity fields.
Here is Nix my derivation:
{
lib,
buildNpmPackage,
fetchFromGitHub
}:
buildNpmPackage rec {
pname = "mattermost-webbapp";
version = "9.11.5";
src = fetchFromGitHub {
owner = "mattermost";
repo = "mattermost";
rev = "v${version}";
hash = "sha256-bLZFeG6kBVP0ws50wtBam/bO206sQnz6va8PATAoRAQ=";
};
sourceRoot = "${src.name}/webapp";
patches = [./fix-package-lock-json.patch ];
dontNpmBuild = true;
makeCacheWritable = true;
forceGitDeps = true;
npmDepsHash = "sha256-ODlqjBZIrvZXtxtIG/CLISf2faAGG1bwFmgd0aUECOQ=";
Can you help me understand why this error is occurring and how I can resolve it?
Detailed error log: https://gist.github.com/fsagbuya/aadbe79e3b791c5c82e5bb917e2ca63d
| 03:49:30 |
fsagbuya | * Hi. I'm trying to build mattermost webapp from source but keep running into the npm error code ENOTCACHED. This happens even though I'm using a package-lock.json file that includes the resolved and integrity fields.
Here is Nix my derivation:
{
lib,
buildNpmPackage,
fetchFromGitHub
}:
buildNpmPackage rec {
pname = "mattermost-webbapp";
version = "9.11.5";
src = fetchFromGitHub {
owner = "mattermost";
repo = "mattermost";
rev = "v${version}";
hash = "sha256-bLZFeG6kBVP0ws50wtBam/bO206sQnz6va8PATAoRAQ=";
};
sourceRoot = "${src.name}/webapp";
patches = [./fix-package-lock-json.patch ];
dontNpmBuild = true;
makeCacheWritable = true;
forceGitDeps = true;
npmDepsHash = "sha256-ODlqjBZIrvZXtxtIG/CLISf2faAGG1bwFmgd0aUECOQ=";
Can you help me understand why this error is occurring and how I can resolve it?
Detailed error log: https://gist.github.com/fsagbuya/aadbe79e3b791c5c82e5bb917e2ca63d
fix-package-lock-json.patch: https://gist.github.com/fsagbuya/59fac03fc17a876393632c1c92f4184a
| 03:51:59 |
fsagbuya | * Hi. I'm trying to build mattermost webapp from source but keep running into the npm error code ENOTCACHED. This happens even though I'm using a package-lock.json file that includes the resolved and integrity fields.
Here is Nix my derivation:
{
lib,
buildNpmPackage,
fetchFromGitHub
}:
buildNpmPackage rec {
pname = "mattermost-webapp";
version = "9.11.5";
src = fetchFromGitHub {
owner = "mattermost";
repo = "mattermost";
rev = "v${version}";
hash = "sha256-bLZFeG6kBVP0ws50wtBam/bO206sQnz6va8PATAoRAQ=";
};
sourceRoot = "${src.name}/webapp";
patches = [./fix-package-lock-json.patch ];
dontNpmBuild = true;
makeCacheWritable = true;
forceGitDeps = true;
npmDepsHash = "sha256-ODlqjBZIrvZXtxtIG/CLISf2faAGG1bwFmgd0aUECOQ=";
Can you help me understand why this error is occurring and how I can resolve it?
Detailed error log: https://gist.github.com/fsagbuya/aadbe79e3b791c5c82e5bb917e2ca63d
fix-package-lock-json.patch: https://gist.github.com/fsagbuya/59fac03fc17a876393632c1c92f4184a
| 04:35:57 |
| 8 Dec 2024 |
dish [Fox/It/She] | https://github.com/postcss/postcss-cli/blob/master/.npmrc | 21:05:18 |
dish [Fox/It/She] | I hate this 😠| 21:05:30 |
| * dish [Fox/It/She] rattling the bars of my cage screaming "USE A LOCKFILE" | 21:06:31 |
| * dish [Fox/It/She] * rattling the bars of my cage screaming "USE A LOCKFILE!!" | 21:06:40 |
Emma [it/its] | just wait until you find out about NoVNC | 22:35:33 |
Emma [it/its] | https://github.com/novnc/noVNC/issues/1705 | 22:36:40 |
Emma [it/its] | they explicitly version all their dependencies as latest | 22:37:01 |
Emma [it/its] | https://github.com/novnc/noVNC/blob/master/package.json | 22:37:31 |
| Marie changed their profile picture. | 22:38:16 |
| Marie changed their profile picture. | 22:39:29 |
| 9 Dec 2024 |
Tomodachi94 (they/them) | In reply to@emma:rory.gay https://github.com/novnc/noVNC/blob/master/package.json That was painful to look at | 02:47:12 |
| 11 Dec 2024 |
| marijan changed their profile picture. | 14:20:32 |
dish [Fox/It/She] | considering dropping nodePackages.bower2nix since bower is not really a thing anymore and nothing in-tree uses it. Any arguments as to why it should stay? | 19:27:14 |
Winter | no | 19:27:36 |
Winter | kill it | 19:27:37 |