From 6f57ff05e7b6a6cdddfe71fd5cb0b4f3253a4396 Mon Sep 17 00:00:00 2001 From: LeRoyce Pearson Date: Fri, 26 Aug 2022 09:34:18 -0600 Subject: [PATCH] Switch to using mitchellh's zig-overlay arqv stopped existing on GitHub, including his zig-overlay repository --- flake.lock | 10 +++++----- flake.nix | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index e8498b5..d6a3431 100644 --- a/flake.lock +++ b/flake.lock @@ -99,15 +99,15 @@ ] }, "locked": { - "lastModified": 1658105291, - "narHash": "sha256-3EXG2r5/h/iyzytRqI+tWTP11f1PdaJJ8Hl5QRe95OE=", - "owner": "arqv", + "lastModified": 1661317012, + "narHash": "sha256-3Lm//qoKwWj9p/gdCaLSASB9kvBw1vfC9BBYUvhVbWU=", + "owner": "mitchellh", "repo": "zig-overlay", - "rev": "bfd640ef3c9bf8b4cd300af9f79a7ba950823ef5", + "rev": "252c13ba498106f37054ad2c4db8e261f569a81e", "type": "github" }, "original": { - "owner": "arqv", + "owner": "mitchellh", "repo": "zig-overlay", "type": "github" } diff --git a/flake.nix b/flake.nix index 1059dbc..3e9f010 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - zig-overlay.url = "github:arqv/zig-overlay"; + zig-overlay.url = "github:mitchellh/zig-overlay"; zig-overlay.inputs.nixpkgs.follows = "nixpkgs"; gitignore.url = "github:hercules-ci/gitignore.nix"; @@ -21,7 +21,7 @@ in flake-utils.lib.eachSystem systems (system: let pkgs = nixpkgs.legacyPackages.${system}; - zig = zig-overlay.packages.${system}.master.latest; + zig = zig-overlay.packages.${system}.master; in rec { packages.default = packages.zls; packages.zls = pkgs.stdenvNoCC.mkDerivation {