Introduced haskellPackages.HPDF

This commit is contained in:
Aycan iRiCAN
2014-07-08 10:07:34 +03:00
parent 873832ab6d
commit c57a72bbae
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;
};
})