5717d2f691
svn path=/nixpkgs/trunk/; revision=30620
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.1";
|
|
sha256 = "13l7gcrgngr2bdr7hxh1wbsh21q7nc5bdknz0gpzjf65297g44an";
|
|
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
|
|
];
|
|
};
|
|
})
|