-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update from Hackage at 2019-09-18T23:51:02Z
- Loading branch information
1 parent
89b9c23
commit ed250ea
Showing
2 changed files
with
210 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,209 @@ | ||
name: hvega | ||
version: 0.4.1.0 | ||
synopsis: Create Vega-Lite visualizations (version 3) in Haskell. | ||
description: This is based on the elm-vegalite package | ||
(<http://package.elm-lang.org/packages/gicentre/elm-vegalite/latest>) | ||
by Jo Wood of the giCentre at the City University of London. | ||
homepage: https://github.com/DougBurke/hvega | ||
bug-reports: https://github.com/DougBurke/hvega/issues | ||
license: BSD3 | ||
license-file: LICENSE | ||
author: Douglas Burke | ||
maintainer: dburke.gw@gmail.com | ||
copyright: 2018-2019 Douglas Burke | ||
category: Graphics | ||
build-type: Simple | ||
extra-source-files: README.md | ||
CHANGELOG.md | ||
stack.yaml | ||
default.nix | ||
shell.nix | ||
hvega.nix | ||
tests/specs/axis/*.vl | ||
tests/specs/color/*.vl | ||
tests/specs/composite/*.vl | ||
tests/specs/conditional/*.vl | ||
tests/specs/config/*.vl | ||
tests/specs/data/*.vl | ||
tests/specs/fillstroke/*.vl | ||
tests/specs/geo/*.vl | ||
tests/specs/hyperlink/*.vl | ||
tests/specs/interaction/*.vl | ||
tests/specs/legend/*.vl | ||
tests/specs/null/*.vl | ||
tests/specs/position/*.vl | ||
tests/specs/projection/*.vl | ||
tests/specs/scale/*.vl | ||
tests/specs/shape/*.vl | ||
tests/specs/sort/*.vl | ||
tests/specs/textformat/*.vl | ||
tests/specs/time/*.vl | ||
tests/specs/tooltip/*.vl | ||
tests/specs/trail/*.vl | ||
tests/specs/viewcomposition/*.vl | ||
tests/specs/windowtransform/*.vl | ||
tests/specs/gallery/advanced/*.vl | ||
tests/specs/gallery/area/*.vl | ||
tests/specs/gallery/bar/*.vl | ||
tests/specs/gallery/dist/*.vl | ||
tests/specs/gallery/error/*.vl | ||
tests/specs/gallery/facet/*.vl | ||
tests/specs/gallery/geo/*.vl | ||
tests/specs/gallery/interaction/*.vl | ||
tests/specs/gallery/label/*.vl | ||
tests/specs/gallery/layer/*.vl | ||
tests/specs/gallery/line/*.vl | ||
tests/specs/gallery/multi/*.vl | ||
tests/specs/gallery/repeat/*.vl | ||
tests/specs/gallery/scatter/*.vl | ||
tests/specs/gallery/table/*.vl | ||
|
||
extra-doc-files: images/example.png | ||
images/intro.png | ||
images/zindex.png | ||
images/vl/stripplot.png | ||
images/vl/stripplotwithbackground.png | ||
images/vl/stripploty.png | ||
images/vl/stripplotwithcolor.png | ||
images/vl/stripplotwithcolorordinal.png | ||
images/vl/parallaxbreakdown.png | ||
images/vl/parallaxhistogram.png | ||
images/vl/gmaghistogram.png | ||
images/vl/yloghistogram.png | ||
images/vl/gmaghistogramwithcolor.png | ||
images/vl/gmaglinewithcolor.png | ||
images/vl/yhistogram.png | ||
images/vl/pointplot.png | ||
images/vl/posplot.png | ||
images/vl/skyplot.png | ||
images/vl/smallmultiples.png | ||
images/vl/smallmultiples2.png | ||
images/vl/baseplot.png | ||
images/vl/layeredplot.png | ||
images/vl/layereddiversion.png | ||
images/vl/concatenatedplot.png | ||
images/vl/concatenatedplot2.png | ||
images/vl/repeatplot.png | ||
images/vl/splomplot.png | ||
images/vl/singleselection.png | ||
images/vl/nearestselection.png | ||
images/vl/multiselection.png | ||
images/vl/eventselection.png | ||
images/vl/intervalselection.png | ||
images/vl/intervalselectiony.png | ||
images/vl/transformselection.png | ||
images/vl/widgetselection.png | ||
images/vl/bindscales.png | ||
images/vl/coordinatedviews.png | ||
images/vl/coordinatedviews2.png | ||
images/vl/contextandfocus.png | ||
images/vl/crossfilter.png | ||
images/vl/errormanual.png | ||
images/vl/errormanual-zoomed.png | ||
images/vl/errorauto.png | ||
images/vl/errorbars.png | ||
images/vl/errorband.png | ||
images/vl/errorbox.png | ||
images/vl/comparingerrors.png | ||
images/vl/combinedplot.png | ||
images/vl/combinedplot-selected.png | ||
|
||
cabal-version: 1.18 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/DougBurke/hvega | ||
|
||
flag tools | ||
description: Build associated tools (in general you won't need this) | ||
default: False | ||
|
||
library | ||
hs-source-dirs: src | ||
exposed-modules: Graphics.Vega.VegaLite | ||
Graphics.Vega.Tutorials.VegaLite | ||
build-depends: base >= 4.9 && < 5 | ||
, aeson >= 0.11 && < 1.5 | ||
, text == 1.2.* | ||
, unordered-containers == 0.2.* | ||
, vector >= 0.11 && < 0.13 | ||
|
||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
|
||
test-suite test | ||
type: exitcode-stdio-1.0 | ||
hs-source-dirs: tests/ | ||
main-is: Test.hs | ||
other-modules: AxisTests | ||
ColorTests | ||
CompositeTests | ||
ConditionalTests | ||
ConfigTests | ||
DataTests | ||
FillStrokeTests | ||
GeoTests | ||
HyperlinkTests | ||
InteractionTests | ||
LegendTests | ||
NullTests | ||
PositionTests | ||
ProjectionTests | ||
ScaleTests | ||
ShapeTests | ||
SortTests | ||
TextFormatTests | ||
TimeTests | ||
TooltipTests | ||
TrailTests | ||
ViewCompositionTests | ||
WindowTransformTests | ||
Gallery.Advanced | ||
Gallery.Area | ||
Gallery.Bar | ||
Gallery.Dist | ||
Gallery.Error | ||
Gallery.Facet | ||
Gallery.Geo | ||
Gallery.Interaction | ||
Gallery.Label | ||
Gallery.Layer | ||
Gallery.Line | ||
Gallery.Multi | ||
Gallery.Repeat | ||
Gallery.Scatter | ||
Gallery.Table | ||
|
||
build-depends: aeson >= 0.11 && < 1.5 | ||
, aeson-pretty == 0.8.* | ||
, base >= 4 && < 5 | ||
, bytestring == 0.10.* | ||
, containers >= 0.5.8 && < 0.7 | ||
, filepath | ||
, tasty | ||
, tasty-golden >= 2.2 && < 2.4 | ||
, text == 1.2.* | ||
, hvega | ||
|
||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
|
||
|
||
executable playtutorial | ||
hs-source-dirs: tools/ | ||
main-is: PlayTutorial.hs | ||
|
||
if flag(tools) | ||
build-depends: aeson | ||
, aeson-pretty == 0.8.* | ||
, base | ||
, bytestring | ||
, directory | ||
, filepath | ||
, hvega | ||
, text | ||
else | ||
buildable: False | ||
|
||
default-language: Haskell2010 | ||
ghc-options: -Wall |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
{"package-hashes":{"MD5":"c321b470d70aa294a1b4c90bd0bc271d","Skein512_512":"ed3e8117cc4aa199c34246d8d0f6c8dabdb9a1566870175249812f35c4e27176e5395b4d1ec75084e4d9453559954d140b130fa3a2a3f185853c21be23ab6063","SHA1":"2977f1532e8cfc4ee9d021670b0ee8a56eb3a6b1","SHA512":"627fdf4356001df66011af7089503e0435959eabf6292dd47857ff1368adaf7277bee17c6c1fe424359f9d9dc6251a7068e11878beaa5e98311c7adcc93dc6e7","SHA256":"e54442b3a4760deca4340c0300ffd27b1fbeb7d9f297b9480f5aab60dfe55ae2"},"package-locations":["https://hackage.haskell.org/package/hvega-0.4.1.0/hvega-0.4.1.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/hvega-0.4.1.0.tar.gz"],"package-size":1761078} |