1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

haskell-pdf-toolbox-content: added

This commit is contained in:
Ian-Woo Kim 2014-09-15 02:31:08 +02:00
parent 3523d484a6
commit 8a027d9827
3 changed files with 20 additions and 2 deletions

View file

@ -0,0 +1,18 @@
{ cabal, attoparsec, base16Bytestring, ioStreams, pdfToolboxCore
, text
}:
cabal.mkDerivation (self: {
pname = "pdf-toolbox-content";
version = "0.0.3.0";
sha256 = "0glcm6mrgg8ixzhp09kfkk3ra3qblvrp1wcsa2nhqlypg3ca8r3h";
buildDepends = [
attoparsec base16Bytestring ioStreams pdfToolboxCore text
];
meta = {
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

@ -1,5 +1,3 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, attoparsec, errors, ioStreams, transformers, zlibBindings
}:

View file

@ -1860,6 +1860,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
pdfToolboxCore = callPackage ../development/libraries/haskell/pdf-toolbox-core {};
pdfToolboxContent = callPackage ../development/libraries/haskell/pdf-toolbox-content {};
pem = callPackage ../development/libraries/haskell/pem {};
permutation = callPackage ../development/libraries/haskell/permutation {};