Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Geode Packages
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Projet GEODE
Geode Packages
Commits
7d5a9437
Commit
7d5a9437
authored
1 year ago
by
Alice Brenon
Browse files
Options
Downloads
Patches
Plain Diff
* geode/packages/encoding.scm: Add ghc-geode.
parent
a710d588
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
geode/packages/encoding.scm
+27
-4
27 additions, 4 deletions
geode/packages/encoding.scm
with
27 additions
and
4 deletions
geode/packages/encoding.scm
+
27
−
4
View file @
7d5a9437
...
...
@@ -2,8 +2,10 @@
#
:use-module
((
gnu
packages
base
)
#
:select
(
sed
))
#
:use-module
((
gnu
packages
compression
)
#
:select
(
unzip
zip
))
#
:use-module
((
gnu
packages
haskell-check
)
#
:select
(
ghc-hunit
))
#
:use-module
((
gnu
packages
haskell-xyz
)
#
:select
(
ghc-attoparsec
ghc-cassava
ghc-edit-distance
ghc-optparse-applicative
ghc-pipes
...
...
@@ -19,7 +21,7 @@
#
:use-module
((
guix
git-download
)
#
:select
(
git-fetch
git-reference
))
#
:use-module
((
guix
licenses
)
#
:select
(
bsd-3
))
#
:select
(
bsd-3
gpl3+
))
#
:use-module
((
guix
packages
)
#
:select
(
package
origin
base32
)))
...
...
@@ -32,8 +34,8 @@
(
source
(
origin
(
method
git-fetch
)
(
uri
(
git-reference
(
url
home-page
)
(
commit
version
)))
(
url
home-page
)
(
commit
version
)))
(
sha256
(
base32
"097xqb8nmdlbhkypkhqy0mr88fr2v1mfgsjsjzvygys3nsgv166r"
))))
...
...
@@ -49,7 +51,28 @@
(
description
"An ad hoc program to fix some XML errors in a XML-TEI encoding of the
Encyclopedie."
)
(
license
bsd-3
)))
(
license
bsd-3
)))
(
define-public
ghc-geode
(
package
(
name
"ghc-geode"
)
(
version
"0.2.0"
)
(
home-page
"https://gitlab.liris.cnrs.fr/geode/ghc-geode"
)
(
source
(
origin
(
method
git-fetch
)
(
uri
(
git-reference
(
url
home-page
)
(
commit
version
)))
(
sha256
(
base32
"0d9jpnxq2jp825hg7s6dgdm1ark274048jhz7dl454rf1n1p5p39"
))))
(
build-system
haskell-build-system
)
(
inputs
(
list
ghc-cassava
ghc-optparse-applicative
ghc-hunit
))
(
synopsis
"Data structures and tooling used in project GEODE"
)
(
description
"Library providing a representation for corpus metadata and primitives to
define command-line tools to process them."
)
(
license
gpl3+
)))
(
define-public
ghc-html5-entity
(
package
...
...
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