-
Notifications
You must be signed in to change notification settings - Fork 3
/
cabal-edit.cabal
41 lines (38 loc) · 1.19 KB
/
cabal-edit.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
cabal-version: 2.4
name: cabal-edit
version: 0.1.0.0
license: MIT
license-file: LICENSE
copyright: 2020 Stephen Diehl
maintainer: stephen.m.diehl@gmail.com
author: sdiehl
bug-reports: https://www.github.com/sdiehl/cabal-edit/issues
synopsis: Cabal utility
description:
A utility for managing Hackage dependencies from the command line.
category: Development
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: git@github.com:sdiehl/cabal-edit.git
executable cabal-edit
main-is: Main.hs
hs-source-dirs: exe
default-language: Haskell2010
ghc-options: -Wall
build-depends:
, base >=4.12 && <5
, bytestring ^>=0.10
, Cabal >=3.0 && <3.4
, containers ^>=0.6
, directory ^>=1.3
, filepath ^>=1.4
, Glob ^>=0.10
, hackage-db ^>=2.1
, optparse-applicative ^>=0.15
, process ^>=1.6
, store ^>=0.7
, time >=1.8 && <1.11