2013-12-02 10:32:28 +00:00
|
|
|
{ cabal, aeson, aesonPretty, attoparsec, filepath, hexpat
|
|
|
|
, hsBibutils, HTTP, mtl, network, pandoc, pandocTypes, parsec
|
|
|
|
, rfc5051, split, syb, tagsoup, temporary, texmath, text, time
|
2013-10-13 09:14:31 +01:00
|
|
|
, vector, yaml
|
2013-09-18 16:45:16 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "pandoc-citeproc";
|
2014-01-11 11:08:26 +00:00
|
|
|
version = "0.3.0.1";
|
|
|
|
sha256 = "1w8ljf0mc5a3bqv0hymg2daafkrlzdzar23l4yqakjr21n75nvlx";
|
2013-09-18 16:45:16 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-12-02 10:32:28 +00:00
|
|
|
aeson aesonPretty attoparsec filepath hexpat hsBibutils HTTP mtl
|
|
|
|
network pandoc pandocTypes parsec rfc5051 split syb tagsoup
|
|
|
|
temporary texmath text time vector yaml
|
2013-09-18 16:45:16 +01:00
|
|
|
];
|
2013-10-20 15:06:39 +01:00
|
|
|
testDepends = [
|
2014-01-11 11:08:26 +00:00
|
|
|
aeson filepath pandoc pandocTypes temporary text yaml
|
2013-10-20 15:06:39 +01:00
|
|
|
];
|
2013-09-18 17:09:34 +01:00
|
|
|
doCheck = false;
|
2013-09-18 16:45:16 +01:00
|
|
|
meta = {
|
|
|
|
description = "Supports using pandoc with citeproc";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|