https://github.com/eswar2001/fdep
https://github.com/eswar2001/fdep
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eswar2001/fdep
- Owner: eswar2001
- License: mit
- Created: 2024-01-23T10:16:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-27T08:51:05.000Z (about 2 years ago)
- Last Synced: 2024-06-28T08:50:22.276Z (about 2 years ago)
- Language: Haskell
- Size: 95.7 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Haskell Function Call Graph Plugin
## Overview
This Haskell plugin automatically generates function call graphs for Haskell packages. It analyzes the source code to identify function calls and relationships, then produces a visual representation of these calls as a graph. This tool is useful for developers seeking to understand the structure and dependencies of their Haskell codebase.
## Usage
Add this to your ghc-options in cabal and mention fdep it in build-depends
Use this when using through nix build
```
-fplugin=Fdep.Plugin
```
use this when using with cabal
```
-fplugin=Fdep.Plugin -fplugin-opt Fdep.Plugin:./tmp/fdep/
```