Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion agda-mcp.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ library
AgdaMCP.Format
AgdaMCP.SessionManager
AgdaMCP.FileEdit
AgdaMCP.Autoformalizer.Types
AgdaMCP.Autoformalizer.Source
AgdaMCP.Autoformalizer.Bijection
AgdaMCP.Autoformalizer.Session
AgdaMCP.Autoformalizer.Handler
AgdaMCP.Autoformalizer.Protocol
build-depends:
base >= 4.14 && < 5,
async >= 2.2,
Expand All @@ -42,6 +48,11 @@ library
TemplateHaskell
NamedFieldPuns
DisambiguateRecordFields
DeriveGeneric
DerivingStrategies
GeneralizedNewtypeDeriving
LambdaCase
RecordWildCards
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints

executable agda-mcp
Expand All @@ -64,20 +75,26 @@ test-suite agda-mcp-tests
AgdaMCP.MultiAgentSpec
AgdaMCP.EditPersistenceSpec
AgdaMCP.TestUtils
AgdaMCP.Autoformalizer.ProtocolSpec
AgdaMCP.Autoformalizer.MarcolliManinSpec
build-depends:
base >= 4.14 && < 5,
agda-mcp,
Agda >= 2.8.0,
aeson >= 2.0,
text >= 1.2,
tasty >= 1.5,
tasty-hunit >= 0.10,
bytestring >= 0.10,
vector >= 0.12,
filepath >= 1.4,
directory >= 1.3,
mcp-server >= 0.1.0.15,
async >= 2.2,
random >= 1.2
random >= 1.2,
stm >= 2.5,
containers >= 0.6,
uuid >= 1.3
hs-source-dirs: test
default-language: Haskell2010
default-extensions:
Expand Down
6 changes: 5 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
# shower.source = inputs.shower; # Override shower to a custom source path
};
settings = {
agda-mcp = {
check = false; # Disable tests for now
haddock = false; # Disable haddock generation
};
# aeson = {
# check = false;
# };
Expand All @@ -61,7 +65,7 @@
};

# haskell-flake doesn't set the default package, but you can do it here.
packages.default = self'.packages.example;
packages.default = self'.packages.agda-mcp;
};
};
}
Loading