haskell-asn1-data: update to version 0.7.1

This commit is contained in:
Peter Simons 2012-08-28 12:37:14 +02:00
parent b61ed4a580
commit 77cd02f766
1 changed files with 5 additions and 7 deletions

View File

@ -1,17 +1,15 @@
{ cabal, attoparsec, attoparsecEnumerator, enumerator, mtl, text }:
{ cabal, cereal, mtl, text }:
cabal.mkDerivation (self: {
pname = "asn1-data";
version = "0.6.1.3";
sha256 = "0vly55dpqrm9vb8ayp72na1nf2rr5ini3d81qqvxflmjgpksrgwq";
version = "0.7.1";
sha256 = "10s7mxygw6w8a8mx090msvbl8pji8m68lsxxyr5bp7p887naia7r";
isLibrary = true;
isExecutable = true;
buildDepends = [
attoparsec attoparsecEnumerator enumerator mtl text
];
buildDepends = [ cereal mtl text ];
meta = {
homepage = "http://github.com/vincenthz/hs-asn1-data";
description = "ASN1 data reader and writer in RAW, BER, DER and CER forms";
description = "ASN1 data reader and writer in RAW, BER and DER forms";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];