Skip to content
Snippets Groups Projects
Commit 6c6a231a authored by Daniel Firth's avatar Daniel Firth
Browse files

asn1-encoding: init at 0.9.6

parent d8642805
Branches
Tags
No related merge requests found
......@@ -76,6 +76,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "ansi-terminal" "0.11.3"
, callHackage "ansi-wl-pprint" "0.6.9"
, callHackage "apecs" "0.9.4"
, callHackage "asn1-encoding" "0.9.6"
, callHackage "asn1-types" "0.3.4"
, callHackage "assoc" "1.0.2"
, callHackage "async" "2.2.4"
......
......@@ -35,6 +35,8 @@ final: prev: with pkgs.haskell.lib; {
apecs = prev.callPackage (./pkgs/apecs.nix) { };
asn1-encoding = prev.callPackage (./pkgs/asn1-encoding.nix) { };
asn1-types = prev.callPackage (./pkgs/asn1-types.nix) { };
assoc = prev.callPackage (./pkgs/assoc.nix) { };
......
{ mkDerivation
, asn1-types
, base
, bytestring
, hourglass
, lib
, mtl
, tasty
, tasty-quickcheck
}:
mkDerivation {
pname = "asn1-encoding";
version = "0.9.6";
sha256 = "d9f8deabd3b908e5cf83c0d813c08dc0143b3ec1c0d97f660d2cfa02c1c8da0a";
revision = "2";
editedCabalFile = "16503ryhq15f2rfdav2qnkq11dg2r3vk3f9v64q9dmxf8dh8zv97";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ asn1-types base bytestring hourglass ];
testHaskellDepends = [
asn1-types
base
bytestring
hourglass
mtl
tasty
tasty-quickcheck
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/vincenthz/hs-asn1";
description = "ASN1 data reader and writer in RAW, BER and DER forms";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment