Future is coming

This commit is contained in:
EEva (JPotier) 2020-03-07 19:14:17 +02:00
parent c578bf77d2
commit 34ebd77a58
3 changed files with 36 additions and 0 deletions

5
CHANGELOG.md Normal file
View File

@ -0,0 +1,5 @@
# Revision history for xmonad-config
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.

2
Setup.hs Normal file
View File

@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain

29
xmonad-config.cabal Normal file
View File

@ -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