From 91e36cd0ba56958df257861f8a651883f862603d Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 21 Jan 2026 19:36:03 -0800 Subject: [PATCH] [NixOS] Claude code to 2.1.4 --- nixos/overlay.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/nixos/overlay.nix b/nixos/overlay.nix index 9238b59e..6433305c 100644 --- a/nixos/overlay.nix +++ b/nixos/overlay.nix @@ -2,8 +2,8 @@ final: prev: let # Claude Code version override - update these values to bump the version claudeCodeVersion = { - version = "2.1.2"; - hash = "sha256-yCRQtK286EOGVs+0SMokATpvwCeZC4irV1bmhU0kgiI="; + version = "2.1.14"; + hash = "sha256-fgDSKCrauOXbgPc+FmwFX3Ro8CGxwW0Jki0wZz53gpg="; npmDepsHash = ""; }; @@ -22,13 +22,13 @@ in # Hyprland and hy3 are provided via flakes for proper plugin compatibility # See flake.nix inputs: hyprland and hy3 - # claude-code = prev.claude-code.overrideAttrs (oldAttrs: { - # inherit (claudeCodeVersion) version npmDepsHash; - # src = prev.fetchurl { - # url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${claudeCodeVersion.version}.tgz"; - # inherit (claudeCodeVersion) hash; - # }; - # }); + claude-code = prev.claude-code.overrideAttrs (oldAttrs: { + inherit (claudeCodeVersion) version npmDepsHash; + src = prev.fetchurl { + url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${claudeCodeVersion.version}.tgz"; + inherit (claudeCodeVersion) hash; + }; + }); # codex = prev.codex.overrideAttrs (oldAttrs: rec { # inherit (codexVersion) version cargoHash;