diff options
author | Azat Bahawi <azahi@teknik.io> | 2021-10-24 22:57:16 +0300 |
---|---|---|
committer | Azat Bahawi <azahi@teknik.io> | 2021-10-24 22:57:16 +0300 |
commit | 463d70153d0704d8f3939a7a4ffb42b9c0464eb2 (patch) | |
tree | e597a14d098185e76f42780d3227b94e4178bd89 /xmonad-ng.cabal | |
parent | Update submodules (diff) |
Nixify and rework package configuration
- Add Nix support - Remove submodules and vendored code - Remove stack support - Various tweaks
Diffstat (limited to 'xmonad-ng.cabal')
-rw-r--r-- | xmonad-ng.cabal | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/xmonad-ng.cabal b/xmonad-ng.cabal index cd121f9..7fa6973 100644 --- a/xmonad-ng.cabal +++ b/xmonad-ng.cabal @@ -1,6 +1,8 @@ +cabal-version: 3.0 + name: xmonad-ng -version: 0.15.6 -synopsis: XMonad configuration +version: 2.0.0 +synopsis: Personal XMonad configuration description: This package is a window manager built on top of xmonad and xmonad-contrib libraries targeted for a single-display GNU\/Linux machine running Xorg. @@ -9,22 +11,21 @@ description: using only keyboard and allows using multiple workspaces, scratchpads, window layouts and etc. -license: BSD3 +license: BSD-3-Clause license-file: LICENSE -copyright: (c) 2018-2020 Azat Bahawi +copyright: (c) 2018-2021 Azat Bahawi author: Azat Bahawi <azahi@teknik.io> maintainer: Azat Bahawi <azahi@teknik.io> stability: experimental -tested-with: GHC ==8.8.4 +tested-with: GHC ==8.10.7 category: System -homepage: https://github.com/azahi/.xmonad -bug-reports: https://github.com/azahi/.xmonad/issues +homepage: https://github.com/azahi/xmonad-ng +bug-reports: https://github.com/azahi/xmonad-ng/issues build-type: Simple -cabal-version: >=2.0 source-repository head type: git - location: https://github.com/azahi/.xmonad + location: https://github.com/azahi/xmonad-ng executable xmonad-ng main-is: Main.hs @@ -46,14 +47,14 @@ executable xmonad-ng hs-source-dirs: src build-depends: - base ^>=4.13 + base ^>=4.14 , containers ^>=0.6 , directory ^>=1.3 , filepath ^>=1.4 , mtl ^>=2.2 , text ^>=1.2 , time ^>=1.9 - , X11 ^>=1.9 + , X11 ^>=1.10 , xmonad ^>=0.15 , xmonad-contrib ^>=0.16 |