Unverified Commit 936bbe42 authored by isabel's avatar isabel
Browse files

bluesky-pds: fix build error

pin to nodejs 22, this seems fine to me since upstream is using nodejs
20.

closes https://github.com/NixOS/nixpkgs/issues/475830
parent 11109e0f
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
  fetchPnpmDeps,
  pnpmConfigHook,
  fetchFromGitHub,
  nodejs,
  nodejs_22,
  vips,
  pkg-config,
  nixosTests,
@@ -18,6 +18,9 @@
}:

let
  # build failure against better-sqlite3, so we use nodejs_22; upstream
  # bluesky-pds uses 20
  nodejs = nodejs_22;
  nodeSources = srcOnly nodejs;
  pythonEnv = python3.withPackages (p: [ p.setuptools ]);
in