build(nix): updated nix hashes

This commit is contained in:
trev 2025-05-14 01:45:17 -04:00
parent 3fd1e1f4a3
commit bce4d598fb

View File

@ -29,6 +29,17 @@
"x86_64-darwin"
"aarch64-darwin"
];
forSystem = f:
nixpkgs.lib.genAttrs build-systems (
system:
f {
inherit system;
pkgs = import nixpkgs {
inherit system;
};
}
);
host-systems = [
{
GOOS = "linux";
@ -55,16 +66,6 @@
GOARCH = "arm64";
}
];
forSystem = f:
nixpkgs.lib.genAttrs build-systems (
system:
f {
inherit system;
pkgs = import nixpkgs {
inherit system;
};
}
);
in {
devShells = forSystem ({pkgs, ...}: let
protoc-gen-connect-openapi = pkgs.buildGoModule {
@ -126,7 +127,7 @@
pname = "check-client";
inherit version;
src = ./client;
npmDepsHash = "sha256-rL8fnFzIuseYEmUkZ2eN+RB7UZCYA7mV4Ck9aZVR2to=";
npmDepsHash = "sha256-TRfAYMEGMDV2F5lSB/g3VjojxA6Z/6fQasI1SQvU68A=";
dontNpmInstall = true;
buildPhase = ''
@ -188,7 +189,7 @@
client = pkgs.buildNpmPackage {
inherit pname version;
src = ./client;
npmDepsHash = "sha256-rL8fnFzIuseYEmUkZ2eN+RB7UZCYA7mV4Ck9aZVR2to=";
npmDepsHash = "sha256-TRfAYMEGMDV2F5lSB/g3VjojxA6Z/6fQasI1SQvU68A=";
installPhase = ''
cp -r build "$out"