Unverified Commit 8a115693 authored by Moritz Sanft's avatar Moritz Sanft Committed by GitHub
Browse files

renovate: add Darwin libtool dependency (#494993)

parents b32529c1 a28a2ebd
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
  nixosTests,
  nix-update-script,
  yq-go,
  cctools,
}:
let
  nodejs = nodejs_24;
@@ -41,7 +42,10 @@ stdenv.mkDerivation (finalAttrs: {
    python3
    yq-go
  ]
  ++ lib.optional stdenv.hostPlatform.isDarwin xcbuild;
  ++ lib.optional stdenv.hostPlatform.isDarwin [
    xcbuild
    cctools # contains libtool, required by better-sqlite3
  ];

  pnpmDeps = fetchPnpmDeps {
    inherit (finalAttrs) pname version src;