From b198836dc74a40d1258eca93d8ad83a586bca3cc Mon Sep 17 00:00:00 2001 From: maralorn Date: Mon, 16 Jan 2023 00:46:14 +0100 Subject: [PATCH] Move to subdir --- CHANGELOG.md | 3 - .gitignore => apps/haskell-dialog/.gitignore | 0 Dialog.hs => apps/haskell-dialog/Dialog.hs | 0 Main.hs => apps/haskell-dialog/Main.hs | 0 apps/haskell-dialog/haskell-dialog.cabal | 59 ++++++++++++++++++++ menu.yaml => apps/haskell-dialog/menu.yaml | 0 6 files changed, 59 insertions(+), 3 deletions(-) delete mode 100644 CHANGELOG.md rename .gitignore => apps/haskell-dialog/.gitignore (100%) rename Dialog.hs => apps/haskell-dialog/Dialog.hs (100%) rename Main.hs => apps/haskell-dialog/Main.hs (100%) create mode 100644 apps/haskell-dialog/haskell-dialog.cabal rename menu.yaml => apps/haskell-dialog/menu.yaml (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 0b8300f7..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,3 +0,0 @@ -# Revision history for haskell-dialog - -* still empty diff --git a/.gitignore b/apps/haskell-dialog/.gitignore similarity index 100% rename from .gitignore rename to apps/haskell-dialog/.gitignore diff --git a/Dialog.hs b/apps/haskell-dialog/Dialog.hs similarity index 100% rename from Dialog.hs rename to apps/haskell-dialog/Dialog.hs diff --git a/Main.hs b/apps/haskell-dialog/Main.hs similarity index 100% rename from Main.hs rename to apps/haskell-dialog/Main.hs diff --git a/apps/haskell-dialog/haskell-dialog.cabal b/apps/haskell-dialog/haskell-dialog.cabal new file mode 100644 index 00000000..e9ce9c24 --- /dev/null +++ b/apps/haskell-dialog/haskell-dialog.cabal @@ -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 diff --git a/menu.yaml b/apps/haskell-dialog/menu.yaml similarity index 100% rename from menu.yaml rename to apps/haskell-dialog/menu.yaml