Compare commits

...

2 Commits

Author SHA1 Message Date
Ricard Illa a17f3f0e27 fixed missing module in cabal 2021-07-11 14:29:07 +02:00
Ricard Illa 87049cd09b cabal file 2021-07-11 14:17:34 +02:00
2 changed files with 27 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
.stack-work/
*~
hmonitors.cabal
stack.yaml.lock

27
hmonitors.cabal Normal file
View File

@ -0,0 +1,27 @@
name: hmonitors
version: 0.1.0.0
license: BSD3
author: Ricard Illa
maintainer: rilla@monotremata.xyz
extra-source-files: README.md
cabal-version: >= 1.8
library
exposed-modules: Monitors.Common
Monitors.Battery
Monitors.Date
Monitors.Net
Monitors.Volume
hs-source-dirs: src
build-depends: base
, containers
, process
, regex-compat
, split
, time
executable hmonitors-query
main-is: Main.hs
hs-source-dirs: app
build-depends: hmonitors, base
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N