78 lines
1.5 KiB
YAML
78 lines
1.5 KiB
YAML
|
name: xmonad-config
|
||
|
version: 0.1.0.0
|
||
|
license: BSD3
|
||
|
author: "Nathan Dwarshuis"
|
||
|
maintainer: "ndwar@yavin4.ch"
|
||
|
copyright: "2022 Nathan Dwarshuis"
|
||
|
|
||
|
extra-source-files:
|
||
|
- README.md
|
||
|
- .stylish-haskell.yaml
|
||
|
- make_pkgs
|
||
|
- icons/*
|
||
|
- scripts/*
|
||
|
- sound/*
|
||
|
|
||
|
dependencies:
|
||
|
- X11 >= 1.9.1
|
||
|
- base
|
||
|
- bytestring >= 0.10.8.2
|
||
|
- colour >= 2.3.5
|
||
|
- containers >= 0.6.0.1
|
||
|
- dbus >= 1.2.7
|
||
|
- fdo-notify
|
||
|
- io-streams >= 1.5.1.0
|
||
|
- mtl >= 2.2.2
|
||
|
- unix >= 2.7.2.2
|
||
|
- tcp-streams >= 1.0.1.1
|
||
|
- text >= 1.2.3.1
|
||
|
- directory >= 1.3.3.0
|
||
|
- process >= 1.6.5.0
|
||
|
- filepath >= 1.4.2.1
|
||
|
- split >= 0.2.3.4
|
||
|
- xmobar
|
||
|
- xmonad-extras >= 0.15.2
|
||
|
- xmonad >= 0.13
|
||
|
- xmonad-contrib >= 0.13
|
||
|
- aeson >= 2.0.3.0
|
||
|
- yaml >=0.11.8.0
|
||
|
- unordered-containers >= 0.2.16.0
|
||
|
- hashable >= 1.3.5.0
|
||
|
- xml >= 1.3.14
|
||
|
- lifted-base >= 0.2.3.12
|
||
|
|
||
|
library:
|
||
|
source-dirs: lib/
|
||
|
ghc-options:
|
||
|
- -Wall
|
||
|
- -Werror
|
||
|
- -Wpartial-fields
|
||
|
- -O2
|
||
|
|
||
|
executables:
|
||
|
xmobar: &bin
|
||
|
main: xmobar.hs
|
||
|
source-dirs: bin
|
||
|
dependencies:
|
||
|
- xmonad-config
|
||
|
ghc-options:
|
||
|
- -threaded
|
||
|
- -Wall
|
||
|
- -Werror
|
||
|
- -Wpartial-fields
|
||
|
- -O2
|
||
|
xmonad:
|
||
|
<<: *bin
|
||
|
main: xmonad.hs
|
||
|
ghc-options:
|
||
|
- -threaded
|
||
|
- -Wall
|
||
|
- -Werror
|
||
|
- -Wpartial-fields
|
||
|
- -O2
|
||
|
# this is needed to avoid writing super complex layout types
|
||
|
- -fno-warn-missing-signatures
|
||
|
vbox-start:
|
||
|
<<: *bin
|
||
|
main: vbox-start.hs
|