From 3f8d69dfa6d680e328cbc218cbb20327e506722b Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Mon, 22 Dec 2025 20:45:12 -0500 Subject: Omni/Namespace,Bild: add support for .ctags files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add Ctags extension type to Namespace.Ext - Allow dots in namespace path components for .ctags.d directories - Mark ctags files as non-buildable in bild - Fixes CI failure when processing .ctags.d/base.ctags 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Omni/Bild.hs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Omni/Bild.hs') diff --git a/Omni/Bild.hs b/Omni/Bild.hs index 1ebeb05..fcf959f 100644 --- a/Omni/Bild.hs +++ b/Omni/Bild.hs @@ -503,6 +503,7 @@ instance ToNixFlag Builder where isBuildableNs :: Namespace -> Bool isBuildableNs = \case (Namespace _ Namespace.C) -> True + (Namespace _ Namespace.Ctags) -> False (Namespace _ Namespace.Css) -> False (Namespace _ Namespace.Hs) -> True (Namespace _ Namespace.Html) -> False @@ -584,6 +585,7 @@ analyzeOne namespace@(Namespace parts ext) = do let defaultOut = isExe ?: (Just <| Namespace.dotSeparated parts, Nothing) case ext of Namespace.Css -> pure Nothing + Namespace.Ctags -> pure Nothing Namespace.Json -> pure Nothing Namespace.Keys -> pure Nothing Namespace.Md -> pure Nothing -- cgit v1.2.3