Unverified Commit 657b6945 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

models-dev: 0-unstable-2026-01-11 -> 0-unstable-2026-01-14 (#480029)

parents 1ab810c4 08f66a5d
Loading
Loading
Loading
Loading
+14 −13
Original line number Diff line number Diff line
@@ -9,12 +9,12 @@
}:
let
  pname = "models-dev";
  version = "0-unstable-2026-01-11";
  version = "0-unstable-2026-01-14";
  src = fetchFromGitHub {
    owner = "anomalyco";
    repo = "models.dev";
    rev = "5771ec68d0d780820d7bdf94671db72bb78a29e2";
    hash = "sha256-+S7TqNGSS4cZ3b8NEt+2o34cw8sCTXcHlL3d5vsuOWU=";
    rev = "db79e08e389c7d10994b5d5b99165c3e124da958";
    hash = "sha256-Z1EcHBDZSz6xUN4S9TSzRTbRLXoRQPuWx+a6myxxDMA=";
  };

  node_modules = stdenvNoCC.mkDerivation {
@@ -36,15 +36,12 @@ let
    buildPhase = ''
      runHook preBuild

       export BUN_INSTALL_CACHE_DIR=$(mktemp -d)

      bun install \
         --filter=./packages/web \
         --force \
        --cpu="*" \
        --frozen-lockfile \
        --ignore-scripts \
        --no-progress \
         --production
        --os="*"

      runHook postBuild
    '';
@@ -61,7 +58,7 @@ let
    # NOTE: Required else we get errors that our fixed-output derivation references store paths
    dontFixup = true;

    outputHash = "sha256-E6QV2ruzEmglBZaQMKtAdKdVpxOiwDX7bMQM8jRsiqs=";
    outputHash = "sha256-E78Hb4ByMfYL/IZG911dX6XRRKNJ0UbQUWMSv0dclFo=";
    outputHashAlgo = "sha256";
    outputHashMode = "recursive";
  };
@@ -116,5 +113,9 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    license = lib.licenses.mit;
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [ delafthi ];
    badPlatforms = [
      # error: Invalid DNS result order
      "x86_64-darwin"
    ];
  };
})