nixpkgs/pkgs/development/libraries/haskell/asn1-encoding/default.nix

21 lines
664 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, asn1Types, hourglass, mtl, tasty, tastyQuickcheck, text }:
cabal.mkDerivation (self: {
pname = "asn1-encoding";
version = "0.9.0";
sha256 = "02x3lzyl4gavl3lc2lrg8rknyvs6r2hf8kmm7xrmma5m857iks8p";
buildDepends = [ asn1Types hourglass mtl ];
testDepends = [
asn1Types hourglass mtl tasty tastyQuickcheck text
];
doCheck = false;
meta = {
homepage = "http://github.com/vincenthz/hs-asn1";
description = "ASN1 data reader and writer in RAW, BER and DER forms";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})