diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d14a0d1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Revision history for xmonad-config + +## 0.1.0.0 -- YYYY-mm-dd + +* First version. Released on an unsuspecting world. diff --git a/Setup.hs b/Setup.hs new file mode 100644 index 0000000..9a994af --- /dev/null +++ b/Setup.hs @@ -0,0 +1,2 @@ +import Distribution.Simple +main = defaultMain diff --git a/xmonad-config.cabal b/xmonad-config.cabal new file mode 100644 index 0000000..cbc8880 --- /dev/null +++ b/xmonad-config.cabal @@ -0,0 +1,29 @@ +cabal-version: >=1.10 +-- Initial package description 'xmonad-config.cabal' generated by 'cabal +-- init'. For further documentation, see +-- http://haskell.org/cabal/users-guide/ + +name: xmonad-config +version: 0.9.9.9 +-- synopsis: +-- description: +-- bug-reports: +-- license: +license-file: AGPLv3 +author: EEva (JPotier) +maintainer: jpo.contributes.to.nixos@marvid.fr +-- copyright: +-- category: +build-type: Simple +extra-source-files: CHANGELOG.md + +executable xmonad-config + main-is: xmonad.hs + -- other-modules: + -- other-extensions: + build-depends: base >=4.13 && <4.14 + , xmonad + , xmonad-contrib + , xmonad-extras + hs-source-dirs: lib + default-language: Haskell2010