diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-09-25 17:48:33 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-09-25 17:48:33 -0700 |
commit | b3ada2f11b6a1927214fe2869f145bb621622c84 (patch) | |
tree | b6045526602174f784a47dcd693a1f8644399ac6 | |
parent | 438fb9c7cb77e2faae2da7de789a77d058d24109 (diff) | |
download | pandoc-b3ada2f11b6a1927214fe2869f145bb621622c84.tar.gz |
cabal.project - use source repository stanzas.
-rw-r--r-- | appveyor.yml | 2 | ||||
-rw-r--r-- | cabal.project | 12 |
2 files changed, 11 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index 1633113ad..2d0b7334d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -87,8 +87,6 @@ test_script: - if "%BUILD_TYPE%" == "cabal" ( cabal --version && mkdir -p "%CABAL_STORE%"/ghc-8.6.1/package.db && - git clone https://github.com/vincenthz/hs-memory vender/hs-memory && - git clone https://github.com/jgm/pandoc-citeproc vendor/pandoc-citeproc && cabal --store-dir="%CABAL_STORE%" new-update && cabal --store-dir="%CABAL_STORE%" new-build -w %GHC% --allow-newer -flua_32bits -fembed_data_files . pandoc-citeproc && forfiles /P .\dist-newstyle /M pandoc*.exe /C "cmd /C cp @file .\windows\ " diff --git a/cabal.project b/cabal.project index 9e040e622..57333ecfc 100644 --- a/cabal.project +++ b/cabal.project @@ -1 +1,11 @@ -packages: pandoc.cabal vendor/*/*.cabal +packages: pandoc.cabal + +source-repository-package + type: git + location: https://github.com/jgm/pandoc-citeproc.git + tag: f7654ae2128f374c0e88fd30bcd3138c50eeb84a + +source-repository-package + type: git + location: https://github.com/vincenthz/hs-memory + tag: 7cb4a2c2ce4b0b142eb041a3a319a7ddec80d045 |