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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
cabal-version: 2.4
name: fsd
version: 0.1.0.0
synopsis: Free Software Directory import utility
description: A command line utility to download, import and export debian
packages for importing into the Free Software Directory
<https://directory.fsf.org>.
bug-reports: id@ypei.org
license: AGPL-3.0-or-later
author: Yuchen Pei
maintainer: Yuchen Pei <hi@ypei.me>
copyright: 2022 Yuchen Pei
-- category:
-- extra-source-files:
executable fsd
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules:
FSD.ChangeLog
FSD.Control
FSD.Copyright
FSD.Db
FSD.Download
FSD.Package
FSD.PackageInfo
FSD.Source
FSD.Translation
FSD.Types
FSD.Wiki
-- LANGUAGE extensions used by modules in this package.
-- other-extensions: ImportQualifiedPost
build-depends:
base, optparse-applicative, extra, text, debian, sqlite-simple, syb, time,
containers, regex-tdfa, pretty-show, process, random, filepath
hs-source-dirs: src
default-language: Haskell2010
library
hs-source-dirs: src
exposed-modules:
FSD.ChangeLog
FSD.Control
FSD.Copyright
FSD.Db
FSD.Download
FSD.Package
FSD.PackageInfo
FSD.Source
FSD.Translation
FSD.Types
FSD.Wiki
build-depends:
base, extra, text, debian, sqlite-simple, syb, time,
containers, regex-tdfa, pretty-show, process, random, filepath
|