1
0
Fork 0

Merge ../haskell-dialog

This commit is contained in:
Malte 2023-01-16 01:05:30 +01:00
commit 3499fb951f
4 changed files with 88 additions and 13 deletions

5
.gitignore vendored
View file

@ -1,5 +0,0 @@
/configuration.nix
/.pre-commit-config.yaml
/result
/result-?
/.direnv

View file

@ -1 +1,5 @@
/dist-newstyle
/configuration.nix
/.pre-commit-config.yaml
/result
/result-?
/.direnv

View file

@ -4,7 +4,7 @@ cabal-version: >=1.10
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: haskell-dialog
name: wizards-dialog
version: 0.1.0.0
-- synopsis:
@ -19,23 +19,40 @@ maintainer: malte.brandy@maralorn.de
build-type: Simple
extra-source-files: CHANGELOG.md
executable hotkeys
main-is: Main.hs
library
ghc-options: -Wall
other-modules: Dialog
exposed-modules: Dialog
-- other-extensions:
build-depends:
base >=4.13
, aeson >= 2.0.1.0
, haskeline
, daemons
, wizards
, ansi-terminal
, text
, witch
, relude
, process
-- hs-source-dirs:
default-language: Haskell2010
executable hotkeys
main-is: Main.hs
ghc-options: -Wall
-- other-extensions:
build-depends:
base >=4.13
, aeson >= 2.0.1.0
, haskeline
, daemons
, ansi-terminal
, text
, relude
, process
, witch
, wizards
, wizards-dialog
, yaml
-- hs-source-dirs:

59
wizards-dialog.cabal Normal file
View file

@ -0,0 +1,59 @@
cabal-version: >=1.10
-- Initial package description 'haskell-dialog.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: wizards-dialog
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: AGPL
author: Malte Brandy
maintainer: malte.brandy@maralorn.de
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library
ghc-options: -Wall
exposed-modules: Dialog
-- other-extensions:
build-depends:
base >=4.13
, haskeline
, wizards
, ansi-terminal
, text
, witch
, relude
, process
-- hs-source-dirs:
default-language: Haskell2010
executable hotkeys
main-is: Main.hs
ghc-options: -Wall
-- other-extensions:
build-depends:
base >=4.13
, aeson >= 2.0.1.0
, haskeline
, daemons
, ansi-terminal
, text
, relude
, process
, witch
, wizards
, wizards-dialog
, yaml
-- hs-source-dirs:
default-language: Haskell2010