From 0cefee8e4f284f527c3021070350951fd061807f Mon Sep 17 00:00:00 2001 From: Aram Markarov Date: Sat, 21 Feb 2026 21:33:25 +0100 Subject: [PATCH] nix fix attempt -> Zach fix pls --- flake.lock | 14 +++++++------- nix/zshell-cli.nix | 5 +++-- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index f79ec88..bb07f24 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1770197578, - "narHash": "sha256-AYqlWrX09+HvGs8zM6ebZ1pwUqjkfpnv8mewYwAo+iM=", + "lastModified": 1771369470, + "narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=", "owner": "nixos", "repo": "nixpkgs", - "rev": "00c21e4c93d963c50d4c0c89bfa84ed6e0694df2", + "rev": "0182a361324364ae3f436a63005877674cf45efb", "type": "github" }, "original": { @@ -23,11 +23,11 @@ ] }, "locked": { - "lastModified": 1769593411, - "narHash": "sha256-WW00FaBiUmQyxvSbefvgxIjwf/WmRrEGBbwMHvW/7uQ=", + "lastModified": 1770693276, + "narHash": "sha256-ngXnN5YXu+f45+QGYNN/VEBMQmcBCYGRCqwaK8cxY1s=", "ref": "refs/heads/master", - "rev": "1e4d804e7f3fa7465811030e8da2bf10d544426a", - "revCount": 732, + "rev": "dacfa9de829ac7cb173825f593236bf2c21f637e", + "revCount": 735, "type": "git", "url": "https://git.outfoxxed.me/outfoxxed/quickshell" }, diff --git a/nix/zshell-cli.nix b/nix/zshell-cli.nix index c533f2d..1284982 100644 --- a/nix/zshell-cli.nix +++ b/nix/zshell-cli.nix @@ -1,5 +1,6 @@ { python3, + installShellFiles, }: python3.pkgs.buildPythonApplication { pname = "zshell-cli"; @@ -17,9 +18,9 @@ python3.pkgs.buildPythonApplication { pillow ]; - pythonImportsCheck = [ "zshell" ]; + pythonImportsCheck = ["zshell"]; - nativeBuildInputs = [ installShellFiles ]; + nativeBuildInputs = [installShellFiles]; SETUPTOOLS_SCM_PRETEND_VERSION = 1; }