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

asn1-parse: init at 0.9.5

parent 86f30751
Branches
Tags
No related merge requests found
...@@ -77,6 +77,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -77,6 +77,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "ansi-wl-pprint" "0.6.9" , callHackage "ansi-wl-pprint" "0.6.9"
, callHackage "apecs" "0.9.4" , callHackage "apecs" "0.9.4"
, callHackage "asn1-encoding" "0.9.6" , callHackage "asn1-encoding" "0.9.6"
, callHackage "asn1-parse" "0.9.5"
, callHackage "asn1-types" "0.3.4" , callHackage "asn1-types" "0.3.4"
, callHackage "assoc" "1.0.2" , callHackage "assoc" "1.0.2"
, callHackage "async" "2.2.4" , callHackage "async" "2.2.4"
......
...@@ -37,6 +37,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -37,6 +37,8 @@ final: prev: with pkgs.haskell.lib; {
asn1-encoding = prev.callPackage (./pkgs/asn1-encoding.nix) { }; asn1-encoding = prev.callPackage (./pkgs/asn1-encoding.nix) { };
asn1-parse = prev.callPackage (./pkgs/asn1-parse.nix) { };
asn1-types = prev.callPackage (./pkgs/asn1-types.nix) { }; asn1-types = prev.callPackage (./pkgs/asn1-types.nix) { };
assoc = prev.callPackage (./pkgs/assoc.nix) { }; assoc = prev.callPackage (./pkgs/assoc.nix) { };
......
{ mkDerivation, asn1-encoding, asn1-types, base, bytestring, lib }:
mkDerivation {
pname = "asn1-parse";
version = "0.9.5";
sha256 = "8f1fe1344d30b39dc594d74df2c55209577722af1497204b4c2b6d6e8747f39e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
asn1-encoding
asn1-types
base
bytestring
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/vincenthz/hs-asn1";
description = "Simple monadic parser for ASN1 stream types";
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