Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
ghc-geode
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
ghc-geode
Commits
83449fda
Commit
83449fda
authored
1 year ago
by
Alice Brenon
Browse files
Options
Downloads
Patches
Plain Diff
Spice things up with a little JSON for the Book type
parent
7a005ff8
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
geode.cabal
+2
-1
2 additions, 1 deletion
geode.cabal
guix.scm
+2
-1
2 additions, 1 deletion
guix.scm
lib/GEODE/Metadata/PrimaryKey.hs
+4
-0
4 additions, 0 deletions
lib/GEODE/Metadata/PrimaryKey.hs
with
8 additions
and
2 deletions
geode.cabal
+
2
−
1
View file @
83449fda
...
...
@@ -35,7 +35,8 @@ library
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base >=4.16 && <4.17
build-depends: aeson >= 2.0.3.0 && <2.1
, base >=4.16 && <4.17
, bytestring >= 0.11.3 && <0.12
, containers >= 0.6.5.1 && <0.7
, cassava >= 0.5.3 && <0.6
...
...
This diff is collapsed.
Click to expand it.
guix.scm
+
2
−
1
View file @
83449fda
(
use-modules
((
gnu
packages
haskell-xyz
)
#
:select
(
ghc-cassava
ghc-optparse-applicative
))
((
gnu
packages
haskell-check
)
#
:select
(
ghc-hunit
))
((
gnu
packages
haskell-web
)
#
:select
(
ghc-aeson
))
((
guix
build-system
haskell
)
#
:select
(
haskell-build-system
))
((
guix
git-download
)
#
:select
(
git-predicate
))
((
guix
gexp
)
#
:select
(
local-file
))
...
...
@@ -17,7 +18,7 @@
#
:recursive?
#t
#
:select?
(
git-predicate
%source-dir
)))
(
build-system
haskell-build-system
)
(
inputs
(
list
ghc-cassava
ghc-optparse-applicative
ghc-hunit
))
(
inputs
(
list
ghc-aeson
ghc-cassava
ghc-optparse-applicative
ghc-hunit
))
(
home-page
"https://gitlab.liris.cnrs.fr/geode/ghc-geode"
)
(
synopsis
"Data structures and tooling used in project GEODE"
)
(
description
...
...
This diff is collapsed.
Click to expand it.
lib/GEODE/Metadata/PrimaryKey.hs
+
4
−
0
View file @
83449fda
...
...
@@ -5,6 +5,7 @@ module GEODE.Metadata.PrimaryKey
,
relativePath
,
uid
)
where
import
Data.Aeson
(
ToJSON
(
..
))
import
Data.Csv
(
FromField
(
..
),
FromNamedRecord
(
..
),
ToNamedRecord
(
..
),
ToField
(
..
))
import
GEODE.Metadata.Types
(
Has
(
..
))
import
GEODE.Metadata.TSV.Header
(
DefaultFields
(
..
),
HasDefaultHeader
(
..
))
...
...
@@ -23,6 +24,9 @@ instance FromField Book where
instance
ToField
Book
where
toField
=
toField
.
show
instance
ToJSON
Book
where
toJSON
=
toJSON
.
show
data
PrimaryKey
=
PrimaryKey
{
book
::
Book
,
tome
::
Int
...
...
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