-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
name: haskell-repos | ||
version: 0.1.0.0 | ||
name: repos-uploader | ||
version: 0.0.0.0 | ||
synopsis: | | ||
Download all Haskell repositories from GitHub and save them to Airsequel | ||
Download metadata for a list of GitHub repos and save it to Airsequel | ||
description: | | ||
For more information check out the readme. | ||
homepage: https://github.com/ad-si/haskell-repos#readme | ||
homepage: https://github.com/Airsequel/repos-uploader#readme | ||
license: AGPL-3.0-or-later | ||
author: Adrian Sieber | ||
maintainer: [email protected] | ||
maintainer: [email protected] | ||
copyright: Adrian Sieber | ||
category: Web | ||
|
||
|
@@ -47,7 +47,7 @@ library: | |
- github | ||
|
||
executables: | ||
haskell-repos: | ||
repos-uploader: | ||
language: GHC2021 | ||
source-dirs: app | ||
main: Main.hs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,17 +4,17 @@ cabal-version: 2.2 | |
-- | ||
-- see: https://github.com/sol/hpack | ||
-- | ||
-- hash: a056babab5004ab1b5703fca4e303777b0644be275bee04bb4ef61ac2cfb7ffb | ||
-- hash: edf1d0e842d7eb15d2887b590795f9ed4d1528afca430e992664b2334bc47242 | ||
|
||
name: haskell-repos | ||
version: 0.1.0.0 | ||
synopsis: Download all Haskell repositories from GitHub and save them to Airsequel | ||
name: repos-uploader | ||
version: 0.0.0.0 | ||
synopsis: Download metadata for a list of GitHub repos and save it to Airsequel | ||
|
||
description: For more information check out the readme. | ||
category: Web | ||
homepage: https://github.com/ad-si/haskell-repos#readme | ||
homepage: https://github.com/Airsequel/repos-uploader#readme | ||
author: Adrian Sieber | ||
maintainer: [email protected] | ||
maintainer: [email protected] | ||
copyright: Adrian Sieber | ||
license: AGPL-3.0-or-later | ||
build-type: Simple | ||
|
@@ -25,9 +25,9 @@ library | |
exposed-modules: | ||
Lib | ||
other-modules: | ||
Paths_haskell_repos | ||
Paths_repos_uploader | ||
autogen-modules: | ||
Paths_haskell_repos | ||
Paths_repos_uploader | ||
hs-source-dirs: | ||
source | ||
default-extensions: | ||
|
@@ -50,12 +50,12 @@ library | |
, time | ||
default-language: GHC2021 | ||
|
||
executable haskell-repos | ||
executable repos-uploader | ||
main-is: Main.hs | ||
other-modules: | ||
Paths_haskell_repos | ||
Paths_repos_uploader | ||
autogen-modules: | ||
Paths_haskell_repos | ||
Paths_repos_uploader | ||
hs-source-dirs: | ||
app | ||
default-extensions: | ||
|