├── .github └── workflows │ └── haskell.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── examples ├── unwrap-options.hs └── unwrap-with-help.hs ├── flake.lock ├── flake.nix ├── optparse-generic.cabal ├── src └── Options │ └── Generic.hs ├── stack.ghc.7.8.4.yaml ├── stack.yaml └── stack.yaml.lock /.github/workflows/haskell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/.github/workflows/haskell.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work 2 | dist-newstyle 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /examples/unwrap-options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/examples/unwrap-options.hs -------------------------------------------------------------------------------- /examples/unwrap-with-help.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/examples/unwrap-with-help.hs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/flake.nix -------------------------------------------------------------------------------- /optparse-generic.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/optparse-generic.cabal -------------------------------------------------------------------------------- /src/Options/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/src/Options/Generic.hs -------------------------------------------------------------------------------- /stack.ghc.7.8.4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/stack.ghc.7.8.4.yaml -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-19.18 2 | -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/optparse-generic/HEAD/stack.yaml.lock --------------------------------------------------------------------------------