-
Notifications
You must be signed in to change notification settings - Fork 0
/
archcleanup.cabal
44 lines (39 loc) · 1.1 KB
/
archcleanup.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
40
41
42
43
44
cabal-version: 3.0
name: archcleanup
synopsis: Cleaning packages
description: Program for cleaning dependent packages
version: 0.1.0.0
homepage: https://github.com/faceleft/archcleanup/
license: BSD-3-Clause
license-file: LICENSE
extra-doc-files: README.md
author: Lesnikov Vladimir
maintainer: [email protected]
stability: alpha
category: System
build-type: Simple
source-repository head
type: git
location: https://github.com/faceleft/archcleanup.git
common build-directives
build-depends: base >=4.11 && <5
ghc-options: -Wall
default-language: Haskell2010
default-extensions:
ImportQualifiedPost
OverloadedStrings
executable archcleanup
import: build-directives,
main-is: Main.hs
other-modules:
Graphs
Pacman
Prepare
Tools
build-depends:
, containers >=0.6 && <1
, directory >=1.3 && <2
, process >=1.6 && <2
, text >=1.2 && <3
, unordered-containers >=0.2 && <1
hs-source-dirs: src