-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub-search-to-rss.cabal
43 lines (40 loc) · 1.04 KB
/
github-search-to-rss.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 2a4c63ad3d57ecf928c4436681a614d56e234431dae2a5d83d8101ff100cec42
name: github-search-to-rss
version: 0.1.0.0
synopsis: Converts results of GitHub issues search into an RSS feed (actually Atom).
category: Web
homepage: https://github.com/Minoru/github-search-to-rss#readme
author: Alexander Batischev
maintainer: Alexander Batischev <[email protected]>
copyright: 2018 Alexander Batischev
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
executable github-search-to-rss
main-is: Main.hs
other-modules:
Args
Feed
Search
Paths_github_search_to_rss
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, feed
, github
, optparse-applicative
, text
, time
, timerep
, vector
, xml-conduit
, xml-types
default-language: Haskell2010