From ff1183d5c39a959fea3e04a40b1124d5268afddf Mon Sep 17 00:00:00 2001 From: LuckShiba Date: Mon, 23 Feb 2026 14:00:12 -0300 Subject: [PATCH 1/2] nix: update flake.lock --- flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index 4ab3227..42ea3b1 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1761672384, - "narHash": "sha256-o9KF3DJL7g7iYMZq9SWgfS1BFlNbsm6xplRjVlOCkXI=", + "lastModified": 1771369470, + "narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "08dacfca559e1d7da38f3cf05f1f45ee9bfd213c", + "rev": "0182a361324364ae3f436a63005877674cf45efb", "type": "github" }, "original": { From 9806395a9802dd465c4687e85beb979f667954e6 Mon Sep 17 00:00:00 2001 From: LuckShiba Date: Mon, 23 Feb 2026 14:01:06 -0300 Subject: [PATCH 2/2] nix: remove pkgs.system deprecation warning --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index db67995..4989e20 100644 --- a/flake.nix +++ b/flake.nix @@ -15,16 +15,16 @@ forAllSystems = (f: nixpkgs.lib.genAttrs supportedSystems (system: - f nixpkgs.legacyPackages.${system} + f nixpkgs.legacyPackages.${system} system ) ); in { packages = forAllSystems ( - pkgs: + pkgs: system: let - inherit (pkgs) lib system; + inherit (pkgs) lib; dsearchVersion = "0.2.0"; in {