eec2c680c7
- HsOpenSSL: updated to version 0.10.3 - RSA: downgraded to version 1.0.6.3 - language-javascript: updated to version 0.5.1 - maude: fixed build - pem: added version 0.1.0 svn path=/nixpkgs/trunk/; revision=33811
16 lines
539 B
Nix
16 lines
539 B
Nix
{ cabal, attoparsec, base64Bytestring, cereal, mtl }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "pem";
|
|
version = "0.1.0";
|
|
sha256 = "0qhkmxfhzpzg3ycdzr4b7zzf84vmhbqv2irh95ymmdbr0cc5hhn9";
|
|
buildDepends = [ attoparsec base64Bytestring cereal mtl ];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-pem";
|
|
description = "Privacy Enhanced Mail (PEM) format reader and writer";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|