diff options
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | stack.full.yaml | 12 |
2 files changed, 6 insertions, 9 deletions
@@ -30,6 +30,9 @@ install: full cabal copy cabal register +stack: + stack install --test --stack-yaml stack.full.yaml + dist: man/pandoc.1 cabal sdist rm -rf "pandoc-${version}" diff --git a/stack.full.yaml b/stack.full.yaml index aaeb0f939..c73d2468e 100644 --- a/stack.full.yaml +++ b/stack.full.yaml @@ -9,14 +9,8 @@ flags: network-uri: true packages: - '.' -- './pandoc-citeproc' -- location: - git: 'https://github.com/jgm/pandoc-types' - commit: c64eb383dce64396290aa815351ddb6e43cb6b0f - extra-dep: true -- location: - git: 'https://github.com/jgm/texmath' - commit: a716e9b5d8c1634847db2c1119e60836634569bf - extra-dep: true +- '../pandoc-citeproc' +- '../pandoc-types' +- '../texmath' extra-deps: [] resolver: lts-3.13 |