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

This commit is contained in:
Gaétan Lepage
2026-01-15 10:16:32 +00:00
committed by GitHub
+14 -13
View File
@@ -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 \
--frozen-lockfile \
--ignore-scripts \
--no-progress \
--production
bun install \
--cpu="*" \
--frozen-lockfile \
--ignore-scripts \
--no-progress \
--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"
];
};
})