Skip to content

Commit e22b674

Browse files
committed
fix(ci): ci/eval on Hydra
1 parent 9e617a5 commit e22b674

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

nix/internal/darwin.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ in
4040
};
4141

4242
# Portable directory that can be run on any modern Darwin:
43-
bundle = (nix-bundle-exe-lib-subdir "${unix.package}/libexec/${unix.packageName.pname}")
43+
bundle = (nix-bundle-exe-lib-subdir "${unix.blockfrost-platform}/libexec/${unix.packageName.pname}")
4444
.overrideAttrs (drv: {
4545
name = unix.packageName.pname;
4646
buildCommand =
@@ -72,7 +72,7 @@ in
7272
# repo. We replace that workdir on each release.
7373
homebrew-tap =
7474
pkgs.runCommandNoCC "homebrew-repo" {
75-
inherit (unix.package) version;
75+
inherit (unix.blockfrost-platform) version;
7676
url_x86_64 = "${unix.releaseBaseUrl}/${inputs.self.internal.x86_64-darwin.archive.outFileName}";
7777
url_aarch64 = "${unix.releaseBaseUrl}/${inputs.self.internal.aarch64-darwin.archive.outFileName}";
7878
} ''

nix/internal/windows.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ in rec {
4747

4848
GIT_REVISION = inputs.self.rev or "dirty";
4949

50-
package = craneLib.buildPackage (commonArgs
50+
package = blockfrost-platform;
51+
52+
blockfrost-platform = craneLib.buildPackage (commonArgs
5153
// {
5254
inherit cargoArtifacts GIT_REVISION;
5355
doCheck = false; # we run Windows tests on real Windows on GHA

0 commit comments

Comments
 (0)