Skip to content

Commit 27ae569

Browse files
committed
update deps
1 parent 350d1cd commit 27ae569

2 files changed

Lines changed: 20 additions & 20 deletions

File tree

flake.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
inputs = {
55
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
66
flake-utils.url = "github:numtide/flake-utils";
7-
oci-zig = {
8-
url = "github:ananthb/oci-zig";
7+
runz = {
8+
url = "github:ananthb/runz";
99
flake = false;
1010
};
1111
oci-spec-zig = {
@@ -14,7 +14,7 @@
1414
};
1515
};
1616

17-
outputs = { self, nixpkgs, flake-utils, oci-zig, oci-spec-zig }:
17+
outputs = { self, nixpkgs, flake-utils, runz, oci-spec-zig }:
1818
flake-utils.lib.eachDefaultSystem (system:
1919
let
2020
pkgs = nixpkgs.legacyPackages.${system};
@@ -29,15 +29,15 @@
2929
};
3030

3131
# Read dependency hashes from build.zig.zon files so zig --system works.
32-
# These must match the .hash fields in build.zig.zon and oci-zig/build.zig.zon.
33-
ociZigHash = "oci-0.1.0-1P7svhpmAgCZYCiZMkLKljDLAOpkQ5x7VbWsmMUl6Exu";
32+
# These must match the .hash fields in build.zig.zon and runz/build.zig.zon.
33+
runzHash = "runz-0.1.0-Fz_yRd5GBgCfsupWOqY1LRk7AXS49BlASN0f8pq8WwVF";
3434
ociSpecHash = "ocispec-0.4.0-dev-voj0cey1AgDS-1Itn3Xu5AiWtB6cwMddZtDUssOtWrIn";
3535

3636
# Create a directory structure that zig --system expects:
3737
# pkgdir/<hash> → source tree
3838
zigDepsDir = pkgs.runCommand "xenomorph-zig-deps" {} ''
3939
mkdir -p $out
40-
ln -s ${oci-zig} $out/${ociZigHash}
40+
ln -s ${runz} $out/${runzHash}
4141
ln -s ${oci-spec-zig} $out/${ociSpecHash}
4242
'';
4343

0 commit comments

Comments
 (0)