Merge pull request #3210 from aycanirican/hpdf

Introduced haskellPackages.HPDF
This commit is contained in:
Peter Simons
2014-07-08 16:03:11 +02:00
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{ cabal, binary, mtl, random, vector, zlib }:
cabal.mkDerivation (self: {
pname = "HPDF";
version = "1.4.6";
sha256 = "15v1mf58fqa25higf52jqlf3fw2fbggfm5v8a8v00zz6q0f3lzn9";
buildDepends = [ binary mtl random vector zlib ];
meta = {
homepage = "http://www.alpheccar.org";
description = "Generation of PDF documents";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})