ac69747aa8
svn path=/nixpkgs/trunk/; revision=32292
25 lines
700 B
Nix
25 lines
700 B
Nix
{ cabal, attoparsec, attoparsecEnumerator, Cabal, enumerator, mtl
|
|
, text
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "asn1-data";
|
|
version = "0.6.1.3";
|
|
sha256 = "0vly55dpqrm9vb8ayp72na1nf2rr5ini3d81qqvxflmjgpksrgwq";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
attoparsec attoparsecEnumerator Cabal 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
|
|
];
|
|
};
|
|
})
|