pin new zig-overlay repo

This commit is contained in:
Mitchell Hashimoto
2022-08-23 10:23:02 -07:00
parent 3774972caf
commit 8e1e8cfc51
3 changed files with 15 additions and 13 deletions

22
flake.lock generated
View File

@ -33,11 +33,11 @@
}, },
"flake-utils_2": { "flake-utils_2": {
"locked": { "locked": {
"lastModified": 1629481132, "lastModified": 1659877975,
"narHash": "sha256-JHgasjPR0/J1J3DRm4KxM4zTyAj4IOJY8vIl75v/kPI=", "narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",
"owner": "numtide", "owner": "numtide",
"repo": "flake-utils", "repo": "flake-utils",
"rev": "997f7efcb746a9c140ce1f13c72263189225f482", "rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -80,11 +80,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1631288242, "lastModified": 1661151577,
"narHash": "sha256-sXm4KiKs7qSIf5oTAmrlsEvBW193sFj+tKYVirBaXz0=", "narHash": "sha256-++S0TuJtuz9IpqP8rKktWyHZKpgdyrzDFUXVY07MTRI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "0e24c87754430cb6ad2f8c8c8021b29834a8845e", "rev": "54060e816971276da05970a983487a25810c38a7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -109,15 +109,15 @@
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2"
}, },
"locked": { "locked": {
"lastModified": 1660870378, "lastModified": 1661275194,
"narHash": "sha256-iXCyt4soxWxcEUvEQHJh1XBbvEiskVaR5UFLfbWbGrw=", "narHash": "sha256-1PenHIm/ScA5lIUfaPzwQKcmbxnlZNgQTK38Gv8UXzg=",
"owner": "roarkanize", "owner": "mitchellh",
"repo": "zig-overlay", "repo": "zig-overlay",
"rev": "ad6afbdece7c817fbf43903766b9e2a7a6e01c68", "rev": "de3aa2eee56c6d1d38740801c9d1902aba5047fd",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "roarkanize", "owner": "mitchellh",
"repo": "zig-overlay", "repo": "zig-overlay",
"type": "github" "type": "github"
} }

View File

@ -5,7 +5,7 @@
nixpkgs.url = "github:nixos/nixpkgs/release-22.05"; nixpkgs.url = "github:nixos/nixpkgs/release-22.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
zig.url = "github:roarkanize/zig-overlay"; zig.url = "github:mitchellh/zig-overlay";
# Used for shell.nix # Used for shell.nix
flake-compat = { url = github:edolstra/flake-compat; flake = false; }; flake-compat = { url = github:edolstra/flake-compat; flake = false; };

View File

@ -13,5 +13,7 @@ final: prev: rec {
wraptest = prev.callPackage ./wraptest.nix { }; wraptest = prev.callPackage ./wraptest.nix { };
# zig we want to be the latest nightly since 0.9.0 is not released yet. # zig we want to be the latest nightly since 0.9.0 is not released yet.
zig = final.zigpkgs.master.latest; # NOTE: we are pinned to this master version because it broke at a certain
# point due to the self-hosted compiler. We'll fix this ASAP.
zig = final.zigpkgs.master-2022-08-19;
} }