From 05f48be62a2edb1cf7bca0174ad19ccc76d62c2e Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 19 Jan 2023 15:37:32 -0800 Subject: [PATCH] make broken shas null --- default.nix | 2 +- sources.json | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/default.nix b/default.nix index 9109c01..d12d4b0 100644 --- a/default.nix +++ b/default.nix @@ -33,7 +33,7 @@ lib.attrsets.mapAttrs (k: v: mkBinaryInstall {inherit (v.${system}) version url sha256;}) (lib.attrsets.filterAttrs - (k: v: (builtins.hasAttr system v) && (v.${system}.url != null)) + (k: v: (builtins.hasAttr system v) && (v.${system}.url != null) && (v.${system}.sha256 != null)) (builtins.removeAttrs sources ["master"])); # The master packages diff --git a/sources.json b/sources.json index e2b861c..d5b9b3f 100644 --- a/sources.json +++ b/sources.json @@ -10678,37 +10678,37 @@ "2023-01-16": { "x86_64-darwin": { "url": "https://ziglang.org/builds/zig-macos-x86_64-0.11.0-dev.1314+9856bea34.tar.xz", - "sha256": "BROKEN. THIS IS PURPOSELY INVALID.", + "sha256": null, "version": "0.11.0-dev.1314+9856bea34", "broken": true }, "aarch64-darwin": { "url": "https://ziglang.org/builds/zig-macos-aarch64-0.11.0-dev.1314+9856bea34.tar.xz", - "sha256": "BROKEN. THIS IS PURPOSELY INVALID.", + "sha256": null, "version": "0.11.0-dev.1314+9856bea34", "broken": true }, "x86_64-linux": { "url": "https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.1314+9856bea34.tar.xz", - "sha256": "BROKEN. THIS IS PURPOSELY INVALID.", + "sha256": null, "version": "0.11.0-dev.1314+9856bea34", "broken": true }, "aarch64-linux": { "url": "https://ziglang.org/builds/zig-linux-aarch64-0.11.0-dev.1314+9856bea34.tar.xz", - "sha256": "BROKEN. THIS IS PURPOSELY INVALID.", + "sha256": null, "version": "0.11.0-dev.1314+9856bea34", "broken": true }, "x86_64-windows": { "url": "https://ziglang.org/builds/zig-windows-x86_64-0.11.0-dev.1314+9856bea34.zip", - "sha256": "BROKEN. THIS IS PURPOSELY INVALID.", + "sha256": null, "version": "0.11.0-dev.1314+9856bea34", "broken": true }, "aarch64-windows": { "url": "https://ziglang.org/builds/zig-windows-aarch64-0.11.0-dev.1314+9856bea34.zip", - "sha256": "BROKEN. THIS IS PURPOSELY INVALID.", + "sha256": null, "version": "0.11.0-dev.1314+9856bea34", "broken": true } @@ -11144,4 +11144,4 @@ "version": "0.10.0" } } -} \ No newline at end of file +}