From db370d849a66c151a4d4c0e3b5fa91b08fb80cf5 Mon Sep 17 00:00:00 2001 From: m3ta-chiron Date: Mon, 31 Aug 2026 11:44:31 +0200 Subject: [PATCH] openspec: drop pass-through, superseded by llm-agents openspec is now consumed from numtide/llm-agents.nix via the shared-nixpkgs overlay (pkgs.llm-agents.openspec), which is fresher than the separately pinned Fission-AI input. Removes the duplicate source of truth; drops the now-unused flake input. --- flake.nix | 5 ----- pkgs/default.nix | 2 -- 2 files changed, 7 deletions(-) diff --git a/flake.nix b/flake.nix index fe9a3a2..7cf51e8 100644 --- a/flake.nix +++ b/flake.nix @@ -10,11 +10,6 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - openspec = { - url = "github:Fission-AI/OpenSpec"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - opencode.url = "github:anomalyco/opencode/dev"; buzz = { diff --git a/pkgs/default.nix b/pkgs/default.nix index aa7493f..346a87d 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -2,7 +2,6 @@ # # Flake inputs used: # inputs.basecamp → basecamp (pass-through) -# inputs.openspec → openspec (pass-through) # inputs.opencode → opencode-desktop (Electron desktop app, pure pass-through) # inputs.agents → not used directly here (used by lib/) { @@ -52,7 +51,6 @@ in { # __intentionallyOverridingVersion = true; # }); basecamp = inputs.basecamp.packages.${system}.default; - openspec = inputs.openspec.packages.${system}.default; opencode-desktop = inputs.opencode.packages.${system}.opencode-desktop; # buzz: Block's "hive mind" desktop app. Consumed from mulatta/buzz.nix