-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbarbly.cabal
39 lines (37 loc) · 1.11 KB
/
barbly.cabal
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
cabal-version: >=1.10
name: barbly
version: 0.2.0.0
synopsis: Create status bar menus for macOS from executables
description: Allows you to place the stdout of a process in the macOS status bar.
bug-reports: https://github.com/luke-clifton/barbly
license: BSD3
license-file: LICENSE
author: Luke Clifton
maintainer: lukec@themk.net
copyright: (c) 2019 Luke Clifton
category: System
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
source-repository head
type: git
location: https://github.com/luke-clifton/barbly.git
executable barbly
main-is: Main.hs
other-modules: AppKit
build-depends:
base >=4.12 && <5
, aeson
, process
, containers
, text
, optparse-applicative
, attoparsec
, bytestring
, async
, mtl
, unix
hs-source-dirs: src
default-language: Haskell2010
c-sources: cbits.m
frameworks: AppKit
ghc-options: -threaded -Wall -Wno-type-defaults -Wno-unused-do-bind