blob: 4b23eb35141abe28350d716f5a77280d2fd79095 (
plain)
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
|
cabal-version: 3.0
name: dfetch
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Kleidi Bujari
maintainer: mail@4kb.net
-- copyright:
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
executable dfetch
import: warnings
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.20.2.0,
directory >= 1.3.8.5,
filepath >= 1.5.4.0
hs-source-dirs: app
default-language: Haskell2010
|