Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
eb0ff8a3
Unverified
Commit
eb0ff8a3
authored
8 years ago
by
Ricardo Wurmus
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add ghc-pandoc-citeproc.
* gnu/packages/haskell.scm (ghc-pandoc-citeproc): New variable.
parent
bfdfb0f6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/haskell.scm
+55
-0
55 additions, 0 deletions
gnu/packages/haskell.scm
with
55 additions
and
0 deletions
gnu/packages/haskell.scm
+
55
−
0
View file @
eb0ff8a3
...
@@ -6461,6 +6461,61 @@ (define-public ghc-xml-conduit
...
@@ -6461,6 +6461,61 @@ (define-public ghc-xml-conduit
the @code{conduit} package."
)
the @code{conduit} package."
)
(
license
license:expat
)))
(
license
license:expat
)))
(
define-public
ghc-pandoc-citeproc
(
package
(
name
"ghc-pandoc-citeproc"
)
(
version
"0.10"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"https://hackage.haskell.org/package/"
"pandoc-citeproc/pandoc-citeproc-"
version
".tar.gz"
))
(
sha256
(
base32
"00mprphppk51ylsrkg817mbk23f9fsfvkwzbys9qqbcjbrxi2r94"
))))
(
build-system
haskell-build-system
)
(
arguments
`
(
#
:phases
(
modify-phases
%standard-phases
;; Tests need to be run after installation.
(
delete
'check
)
(
add-after
'install
'post-install-check
(
assoc-ref
%standard-phases
'check
)))))
(
inputs
`
((
"ghc-mtl"
,
ghc-mtl
)
(
"ghc-pandoc-types"
,
ghc-pandoc-types
)
(
"ghc-pandoc"
,
ghc-pandoc
)
(
"ghc-tagsoup"
,
ghc-tagsoup
)
(
"ghc-aeson"
,
ghc-aeson
)
(
"ghc-text"
,
ghc-text
)
(
"ghc-vector"
,
ghc-vector
)
(
"ghc-xml-conduit"
,
ghc-xml-conduit
)
(
"ghc-unordered-containers"
,
ghc-unordered-containers
)
(
"ghc-data-default"
,
ghc-data-default
)
(
"ghc-setenv"
,
ghc-setenv
)
(
"ghc-split"
,
ghc-split
)
(
"ghc-yaml"
,
ghc-yaml
)
(
"ghc-hs-bibutils"
,
ghc-hs-bibutils
)
(
"ghc-rfc5051"
,
ghc-rfc5051
)
(
"ghc-syb"
,
ghc-syb
)
(
"ghc-parsec"
,
ghc-parsec
)
(
"ghc-old-locale"
,
ghc-old-locale
)
(
"ghc-aeson-pretty"
,
ghc-aeson-pretty
)
(
"ghc-attoparsec"
,
ghc-attoparsec
)
(
"ghc-temporary"
,
ghc-temporary
)))
(
home-page
"https://github.com/jgm/pandoc-citeproc"
)
(
synopsis
"Library for using pandoc with citeproc"
)
(
description
"The @code{pandoc-citeproc} library exports functions for using the
citeproc system with pandoc. It relies on @code{citeproc-hs}, a library for
rendering bibliographic reference citations into a variety of styles using a
macro language called @dfn{Citation Style Language} (CSL). This package also
contains an executable @code{pandoc-citeproc}, which works as a pandoc filter,
and also has a mode for converting bibliographic databases a YAML format
suitable for inclusion in pandoc YAML metadata."
)
(
license
license:bsd-3
)))
(
define-public
ghc-union-find
(
define-public
ghc-union-find
(
package
(
package
(
name
"ghc-union-find"
)
(
name
"ghc-union-find"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment