about summary refs log tree commit diff
path: root/xmonad-ng.cabal
blob: 9f91a1465a0ec5adcfdfe31a809f943e587fb10d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name:          xmonad-ng
version:       0.15.5
synopsis:      XMonad configuration
description:   XMonad configuration hacked together using stolen code and bad Haskell
license:       BSD3
license-file:  LICENSE
copyright:     Copyright (c) 2018-2019 Azat Bahawi <azahi@teknik.io>
author:        Azat Bahawi <azahi@teknik.io>
maintainer:    Azat Bahawi <azahi@teknik.io>
stability:     experimental
category:      System
homepage:      https://github.com/azahi/xmonad-config
build-type:    Simple
cabal-version: >= 2.0

source-repository head
  type:     git
  location: https://github.com/azahi/xmonad-config

executable xmonad-ng
  main-is:          Main.hs
  other-modules:    XMonad.Actions.FloatSnapSpaced
                    XMonad.Actions.PerConditionKeys
                    XMonad.Custom.Bindings
                    XMonad.Custom.Event
                    XMonad.Custom.Layout
                    XMonad.Custom.Log
                    XMonad.Custom.Manage
                    XMonad.Custom.Misc
                    XMonad.Custom.Navigation
                    XMonad.Custom.Projects
                    XMonad.Custom.Scratchpads
                    XMonad.Custom.Startup
                    XMonad.Custom.Theme
                    XMonad.Custom.Workspaces
  hs-source-dirs:   src
  build-depends:    X11            >= 1.9 && < 1.10
                  , base           >= 4.12 && < 4.13
                  , containers     >= 0.6 && < 0.7
                  , directory      >= 1.3 && < 1.4
                  , filepath       >= 1.4 && < 1.5
                  , mtl            >= 2.2 && < 2.3
                  , text           >= 1.2 && < 1.3
                  , time           >= 1.8 && < 1.9
                  , xmonad         >= 0.15 && < 0.16
                  , xmonad-contrib >= 0.16 && < 0.17
  default-language: Haskell2010
  other-extensions: MultiParamTypeClasses
                    CPP
                    TypeSynonymInstances
                    DeriveDataTypeable
                    LambdaCase
  ghc-options:      -Wall

Consider giving Nix/NixOS a try! <3