haskell-pdf-toolbox-document added

This commit is contained in:
Ian-Woo Kim 2014-09-15 02:42:03 +02:00
parent 8a027d9827
commit 6d01dddd6f
2 changed files with 23 additions and 1 deletions

View file

@ -0,0 +1,20 @@
{ cabal, cipherRc4, cryptohash, ioStreams, pdfToolboxContent
, pdfToolboxCore, text, transformers
}:
cabal.mkDerivation (self: {
pname = "pdf-toolbox-document";
version = "0.0.3.0";
sha256 = "0y1kb2hf420jx6r81c431avgar32wzx2xr747akcs4rypf6w53fn";
buildDepends = [
cipherRc4 cryptohash ioStreams pdfToolboxContent pdfToolboxCore
text transformers
];
meta = {
homepage = "https://github.com/Yuras/pdf-toolbox";
description = "A collection of tools for processing PDF files";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = with self.stdenv.lib.maintainers; [ ianwookim ];
};
})

View file

@ -1858,9 +1858,11 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
pcreLight = callPackage ../development/libraries/haskell/pcre-light {};
pdfToolboxContent = callPackage ../development/libraries/haskell/pdf-toolbox-content {};
pdfToolboxCore = callPackage ../development/libraries/haskell/pdf-toolbox-core {};
pdfToolboxContent = callPackage ../development/libraries/haskell/pdf-toolbox-content {};
pdfToolboxDocument = callPackage ../development/libraries/haskell/pdf-toolbox-document {};
pem = callPackage ../development/libraries/haskell/pem {};