summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pdf-toolbox-content/default.nix
blob: fd43a0452db82fde99d4f0a8084da71bd083807c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ];
  };
})