haskell-pandoc-citeproc: add version 0.1.1
This commit is contained in:
parent
eb21eb3f67
commit
dc4e44a241
2 changed files with 26 additions and 0 deletions
|
@ -0,0 +1,24 @@
|
|||
{ cabal, aeson, aesonPretty, attoparsec, Diff, filepath, hexpat
|
||||
, hsBibutils, HTTP, json, mtl, network, pandocTypes, parsec
|
||||
, rfc5051, syb, tagsoup, texmath, text, time, utf8String, vector
|
||||
, yaml
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "pandoc-citeproc";
|
||||
version = "0.1.1";
|
||||
sha256 = "1pna6m83ay1jjcnazgc70vif55fff9xhk7129fbv9wf7d29hlw32";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
aeson attoparsec filepath hexpat hsBibutils HTTP json mtl network
|
||||
pandocTypes parsec rfc5051 syb tagsoup texmath text time utf8String
|
||||
vector yaml
|
||||
];
|
||||
testDepends = [ aeson aesonPretty Diff pandocTypes utf8String ];
|
||||
meta = {
|
||||
description = "Supports using pandoc with citeproc";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -1602,6 +1602,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
pandoc = callPackage ../development/libraries/haskell/pandoc {};
|
||||
|
||||
pandocCiteproc = callPackage ../development/libraries/haskell/pandoc-citeproc {};
|
||||
|
||||
pandocTypes = callPackage ../development/libraries/haskell/pandoc-types {};
|
||||
|
||||
pango = callPackage ../development/libraries/haskell/pango {
|
||||
|
|
Loading…
Reference in a new issue