8691ff4ea1
- certificate: updated to version 1.2.1 - crypto-api: updated to version 0.10.1 - crypto-conduit: patched to build crypto-api 0.10.x - http-conduit: updated to version 1.4.1.2 - http-enumerator: deleted obsolete package - MonadCatchIO-transformers: updated to version 0.3.0.0 - pem: updated to version 0.1.1 - RSA: updated to version 1.2.0.0 - skein: updated to version 0.1.0.5 - snap-core: patched to support MonadCatchIO-transformers version 0.3.0.0 - snap-server: patched to support MonadCatchIO-transformers version 0.3.0.0 - tagged: updated to version 0.4.2 - tls-extra: updated to version 0.4.5 - tls: updated to version 0.9.3 - yesod-auth: updated to version 1.0.1 - yesod: updated to version 1.0.1.1 svn path=/nixpkgs/trunk/; revision=33839
16 lines
539 B
Nix
16 lines
539 B
Nix
{ cabal, attoparsec, base64Bytestring, cereal, mtl }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "pem";
|
|
version = "0.1.1";
|
|
sha256 = "0klb39w6mihx35xgdw5wvi1q6r61xgrsqvcqi4c5r6psv5z94cil";
|
|
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 ];
|
|
};
|
|
})
|