mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
18 lines
548 B
Nix
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 ];
|
|
};
|
|
})
|