The latest version of gitlab-haskell is 1.0.2.2-0.

gitlab-haskell

Version 0.1.0.0 revision 0 uploaded by RobStewart.

Package meta

Synopsis
A Haskell library for the GitLab web API
Description

This Haskell library queries and updates the database of a GitLab instance using the GitLab web API: https://docs.gitlab.com/ee/api/

An example that returns projects for which issue creation is enabled is:

projectsWithIssuesEnabled :: IO [Project]
projectsWithIssuesEnabled = runGitLab myConfig $ filter (issueEnabled . issues_enabled) <$> allProjects
  where myConfig = defaultGitLabServer
            { url = "https://gitlab.example.com"
            , token = "my_access_token" }
        issueEnabled Nothing = False
        issueEnabled (Just t) = t

Unsurprisingly, GitLab hosts this Haskell library: https://gitlab.com/robstewart57/gitlab-haskell

Author
Rob Stewart
Bug reports
https://gitlab.com/robstewart57/gitlab-haskell/issues
Category
Git
Copyright
2019 Rob Stewart, Heriot-Watt University
Homepage
https://gitlab.com/robstewart57/gitlab-haskell
Maintainer
robstewart57@gmail.com
Package URL
n/a
Stability
n/a

Components