nixpkgs/pkgs/development/libraries/haskell/asn1-data/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

18 lines
548 B
Nix

{ cabal, cereal, mtl, text }:
cabal.mkDerivation (self: {
pname = "asn1-data";
version = "0.7.1";
sha256 = "10s7mxygw6w8a8mx090msvbl8pji8m68lsxxyr5bp7p887naia7r";
isLibrary = true;
isExecutable = true;
buildDepends = [ cereal mtl text ];
meta = {
homepage = "http://github.com/vincenthz/hs-asn1-data";
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 ];
};
})