2012-08-28 11:37:14 +01:00
|
|
|
{ cabal, cereal, mtl, text }:
|
2011-08-07 23:51:22 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:51:22 +01:00
|
|
|
pname = "asn1-data";
|
2012-08-28 11:37:14 +01:00
|
|
|
version = "0.7.1";
|
|
|
|
sha256 = "10s7mxygw6w8a8mx090msvbl8pji8m68lsxxyr5bp7p887naia7r";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-08-28 11:37:14 +01:00
|
|
|
buildDepends = [ cereal mtl text ];
|
2011-08-07 23:51:22 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-asn1-data";
|
2012-08-28 11:37:14 +01:00
|
|
|
description = "ASN1 data reader and writer in RAW, BER and DER forms";
|
2011-08-07 23:51:22 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|