d70b6515f6
svn path=/nixpkgs/trunk/; revision=31000
23 lines
686 B
Nix
23 lines
686 B
Nix
{ cabal, attoparsec, attoparsecEnumerator, enumerator, mtl, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "asn1-data";
|
|
version = "0.6.1.2";
|
|
sha256 = "1655fp71l8qjif4p6c1y2xk8r0gj58djg7np5zwwm6jlj780773r";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
attoparsec attoparsecEnumerator enumerator mtl text
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-asn1-data";
|
|
description = "ASN1 data reader and writer in RAW, BER, DER and CER forms";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|