-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow filepath-1.5 in a few packages (#850)
* fs-api: allow filepath-1.5 This has already been allowed on upstream `main` in input-output-hk/fs-sim#75 * latex-svg-image: allow filepath-1.5 This has already been allowed in the IOG fork in jasagredo/latex-svg#1
- Loading branch information
Showing
4 changed files
with
128 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
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,68 @@ | ||
cabal-version: 3.0 | ||
name: fs-api | ||
version: 0.2.0.1 | ||
synopsis: API for file systems | ||
description: API for file systems. | ||
license: Apache-2.0 | ||
license-files: | ||
LICENSE | ||
NOTICE | ||
|
||
copyright: 2019-2023 Input Output Global Inc (IOG) | ||
author: IOG Engineering Team | ||
maintainer: [email protected] | ||
category: System | ||
build-type: Simple | ||
extra-doc-files: CHANGELOG.md | ||
tested-with: GHC ==8.10 || ==9.2 || ==9.4 || ==9.6 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/input-output-hk/fs-sim | ||
subdir: fs-api | ||
|
||
library | ||
hs-source-dirs: src | ||
|
||
if os(windows) | ||
hs-source-dirs: src-win32 | ||
|
||
else | ||
hs-source-dirs: src-unix | ||
|
||
exposed-modules: | ||
System.FS.API | ||
System.FS.API.Lazy | ||
System.FS.API.Strict | ||
System.FS.API.Types | ||
System.FS.CRC | ||
System.FS.IO | ||
System.FS.IO.Internal | ||
System.FS.IO.Internal.Handle | ||
Util.CallStack | ||
Util.Condense | ||
|
||
default-language: Haskell2010 | ||
build-depends: | ||
, base >=4.14 && <4.21 | ||
, bytestring >=0.10 && <0.13 | ||
, containers >=0.5 && <0.8 | ||
, deepseq | ||
, digest | ||
, directory >=1.3 && <1.4 | ||
, filepath >=1.4 && <1.6 | ||
, io-classes >=0.3 && <1.6 | ||
, text >=1.2 && <2.2 | ||
|
||
if os(windows) | ||
build-depends: Win32 >=2.6.1.0 | ||
|
||
else | ||
build-depends: | ||
, unix | ||
, unix-bytestring >=0.4.0 | ||
|
||
ghc-options: | ||
-Wall -Wcompat -Wincomplete-uni-patterns | ||
-Wincomplete-record-updates -Wpartial-fields -Widentities | ||
-Wredundant-constraints -Wmissing-export-lists -Wunused-packages |
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
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,52 @@ | ||
cabal-version: 2.2 | ||
name: latex-svg-image | ||
version: 0.2.0.0.0.1 | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
copyright: 2020 Oleg Grenrus, 2015-2019 Liam O'Connor | ||
maintainer: Oleg Grenrus <[email protected]> | ||
author: Oleg Grenrus, Liam O'Connor | ||
tested-with: ghc ==8.10.7 || ==9.6.4 || ==9.8.1 | ||
homepage: http://github.com/phadej/latex-svg#readme | ||
synopsis: | ||
A library for rendering LaTeX formulae as SVG using an actual LaTeX | ||
|
||
description: | ||
This library provides the basic infrastructure necessary to convert LaTeX | ||
formulae into SVG images, using a real LaTeX installation. This is useful in | ||
particular for showing formulae on websites, where using alternatives like | ||
MathJax is not an option (e.g, when you want to use various LaTeX packages that | ||
MathJax doesn't support). | ||
. | ||
This library requires @latex@, @dvisvgm@ to be present in the system. | ||
. | ||
The companion library to this, @latex-svg-pandoc@, provides useful tools to | ||
integrate this library with pandoc, when generating HTML documents. | ||
. | ||
This is a fork of https://github.com/liamoc/latex-formulae | ||
|
||
category: Image | ||
build-type: Simple | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/phadej/latex-svg | ||
subdir: latex-svg-image | ||
|
||
library | ||
exposed-modules: Image.LaTeX.Render | ||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
build-depends: | ||
base >=4.14.3 && <4.21, | ||
deepseq >=1.4.4 && <1.6, | ||
directory ^>=1.3.6, | ||
filepath >=1.4.2.1 && <1.6, | ||
parsec ^>=3.1.14, | ||
process ^>=1.6.13.2, | ||
temporary ^>=1.3, | ||
transformers >=0.5.6.2 && <1.7, | ||
base64-bytestring ^>=1.2.1, | ||
bytestring >=0.10.12 && <0.13, | ||
cryptohash-sha256 ^>=0.11.102.1 |