mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ocamlPackages.angstrom*: 0.13.0 -> 0.14.1
ocamlPackages.email_message: fix 0.12.0 version for angstrom 0.14 ocamlPackages.encore: 0.3 → 0.5 ocamlPackages.git{,-http,-unix}: 2.1.2 → 2.1.3
This commit is contained in:
parent
581660a4d3
commit
2c616aa638
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "angstrom";
|
pname = "angstrom";
|
||||||
version = "0.13.0";
|
version = "0.14.1";
|
||||||
|
|
||||||
minimumOCamlVersion = "4.04";
|
minimumOCamlVersion = "4.04";
|
||||||
|
|
||||||
@ -10,7 +10,7 @@ buildDunePackage rec {
|
|||||||
owner = "inhabitedtype";
|
owner = "inhabitedtype";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0vzbwd8j34iv7n6gwqq2mf25q7rqpnpxnifb9ssxhq55p5dd1kp4";
|
sha256 = "1l69y0qspgi7kgrphyh7718hjb2sml1a9lljkp65bkqmmmi6ybly";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ alcotest ];
|
checkInputs = [ alcotest ];
|
||||||
|
@ -1,15 +1,21 @@
|
|||||||
{ lib, buildDunePackage, fetchurl, ocaml, alcotest, angstrom, ke }:
|
{ lib, buildDunePackage, fetchurl, ocaml
|
||||||
|
, fmt, bigstringaf, bigarray-compat
|
||||||
|
, bigarray-overlap, angstrom, ke, alcotest }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "encore";
|
pname = "encore";
|
||||||
version = "0.3";
|
version = "0.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/mirage/encore/releases/download/v${version}/encore-v${version}.tbz";
|
url = "https://github.com/mirage/encore/releases/download/v${version}/encore-v${version}.tbz";
|
||||||
sha256 = "05nv6yms5axsmq9cspr7884rz5kirj50izx3vdm89q4yl186qykl";
|
sha256 = "15n0dla149k9h7migs76wap08z5402qcvxyqxzl887ha6isj3p9n";
|
||||||
};
|
};
|
||||||
propagatedBuildInputs = [ angstrom ke ];
|
|
||||||
checkInputs = lib.optional doCheck alcotest;
|
useDune2 = true;
|
||||||
doCheck = lib.versions.majorMinor ocaml.version != "4.07";
|
|
||||||
|
propagatedBuildInputs = [ angstrom ke fmt bigstringaf bigarray-compat bigarray-overlap ];
|
||||||
|
checkInputs = [ alcotest ];
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/mirage/encore";
|
homepage = "https://github.com/mirage/encore";
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
{ buildDunePackage, git, cohttp-lwt, alcotest, mtime, nocrypto }:
|
{ buildDunePackage, git, cohttp, cohttp-lwt }:
|
||||||
|
|
||||||
buildDunePackage {
|
buildDunePackage {
|
||||||
pname = "git-http";
|
pname = "git-http";
|
||||||
inherit (git) version src;
|
inherit (git) version src minimumOCamlVersion;
|
||||||
|
|
||||||
buildInputs = [ alcotest mtime nocrypto ];
|
useDune2 = true;
|
||||||
propagatedBuildInputs = [ git cohttp-lwt ];
|
|
||||||
doCheck = true;
|
propagatedBuildInputs = [ git cohttp cohttp-lwt ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Client implementation of the “Smart” HTTP Git protocol in pure OCaml";
|
description = "Client implementation of the “Smart” HTTP Git protocol in pure OCaml";
|
||||||
|
@ -1,13 +1,17 @@
|
|||||||
{ buildDunePackage, git-http, cohttp-lwt-unix, tls, cmdliner, mtime }:
|
{ stdenv, buildDunePackage, git-http, cohttp, cohttp-lwt-unix
|
||||||
|
, mmap, cmdliner, mtime, alcotest, mirage-crypto-rng, tls
|
||||||
|
, io-page, git-binary
|
||||||
|
}:
|
||||||
|
|
||||||
buildDunePackage {
|
buildDunePackage {
|
||||||
pname = "git-unix";
|
pname = "git-unix";
|
||||||
inherit (git-http) version src;
|
inherit (git-http) version src minimumOCamlVersion;
|
||||||
|
|
||||||
useDune2 = true;
|
useDune2 = true;
|
||||||
|
|
||||||
buildInputs = [ cmdliner mtime ];
|
propagatedBuildInputs = [ mmap cmdliner git-http cohttp cohttp-lwt-unix mtime ];
|
||||||
propagatedBuildInputs = [ cohttp-lwt-unix git-http tls ];
|
checkInputs = [ alcotest mirage-crypto-rng tls io-page git-binary ];
|
||||||
|
doCheck = !stdenv.isAarch64;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Unix backend for the Git protocol(s)";
|
description = "Unix backend for the Git protocol(s)";
|
||||||
|
@ -1,23 +1,30 @@
|
|||||||
{ lib, fetchurl, buildDunePackage
|
{ stdenv, fetchurl, buildDunePackage
|
||||||
, alcotest, git, mtime, nocrypto
|
, alcotest, mtime, mirage-crypto-rng, tls, git-binary
|
||||||
, angstrom, astring, cstruct, decompress, digestif, encore, duff, fmt
|
, angstrom, astring, cstruct, decompress, digestif, encore, duff, fmt, checkseum
|
||||||
, fpath, hex, ke, logs, lru, ocaml_lwt, ocamlgraph, ocplib-endian, uri, rresult
|
, fpath, hex, ke, logs, lru, ocaml_lwt, ocamlgraph, ocplib-endian, uri, rresult
|
||||||
|
, stdlib-shims
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "git";
|
pname = "git";
|
||||||
version = "2.1.2";
|
version = "2.1.3";
|
||||||
|
|
||||||
|
minimumOCamlVersion = "4.07";
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/mirage/ocaml-git/releases/download/${version}/git-${version}.tbz";
|
url = "https://github.com/mirage/ocaml-git/releases/download/${version}/git-${version}.tbz";
|
||||||
sha256 = "0yyclsh255k7pvc2fcsdi8k2fcrr0by2nz6g3sqnwlimjyp7mz5j";
|
sha256 = "1ppllv65vrkfrmx46aiq5879isffcjmg92z9rv2kh92a83h4lqax";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ angstrom astring cstruct decompress digestif encore duff fmt fpath hex ke logs lru ocaml_lwt ocamlgraph ocplib-endian uri rresult ];
|
propagatedBuildInputs = [
|
||||||
checkInputs = lib.optionals doCheck [ alcotest git mtime nocrypto ];
|
angstrom astring checkseum cstruct decompress digestif encore duff fmt fpath
|
||||||
doCheck = true;
|
hex ke logs lru ocaml_lwt ocamlgraph ocplib-endian uri rresult stdlib-shims
|
||||||
|
];
|
||||||
|
checkInputs = [ alcotest mtime mirage-crypto-rng tls git-binary ];
|
||||||
|
doCheck = !stdenv.isAarch64;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv; {
|
||||||
description = "Git format and protocol in pure OCaml";
|
description = "Git format and protocol in pure OCaml";
|
||||||
license = lib.licenses.isc;
|
license = lib.licenses.isc;
|
||||||
maintainers = [ lib.maintainers.vbgl ];
|
maintainers = [ lib.maintainers.vbgl ];
|
||||||
|
@ -533,6 +533,7 @@ rec {
|
|||||||
pname = "email_message";
|
pname = "email_message";
|
||||||
hash = "131jd72k4s8cdbgg6gyg7w5v8mphdlvdx4fgvh8d9a1m7kkvbxfg";
|
hash = "131jd72k4s8cdbgg6gyg7w5v8mphdlvdx4fgvh8d9a1m7kkvbxfg";
|
||||||
propagatedBuildInputs = [ async angstrom core_extended cryptokit magic-mime ounit ];
|
propagatedBuildInputs = [ async angstrom core_extended cryptokit magic-mime ounit ];
|
||||||
|
patches = [ ./email-message-angstrom-0.14.patch ];
|
||||||
meta.description = "E-mail message parser";
|
meta.description = "E-mail message parser";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
diff --git a/email_address/src/email_address.ml b/email_address/src/email_address.ml
|
||||||
|
index 7470273..d070465 100644
|
||||||
|
--- a/email_address/src/email_address.ml
|
||||||
|
+++ b/email_address/src/email_address.ml
|
||||||
|
@@ -38,7 +38,7 @@ module Stable = struct
|
||||||
|
let of_string ?default_domain input_str =
|
||||||
|
let open Core_kernel in
|
||||||
|
let open! Int.Replace_polymorphic_compare in
|
||||||
|
- match Angstrom.parse_string Email_address_parser_stable_v1.email_only input_str with
|
||||||
|
+ match Angstrom.parse_string ~consume:Prefix Email_address_parser_stable_v1.email_only input_str with
|
||||||
|
| Error error ->
|
||||||
|
Or_error.error_s [%message
|
||||||
|
"Failed to parse email address"
|
||||||
|
@@ -104,7 +104,7 @@ module T = Stable.V1.With_comparator
|
||||||
|
include T
|
||||||
|
|
||||||
|
let list_of_string ?default_domain input_str =
|
||||||
|
- match Angstrom.parse_string Email_address_parser_stable_v1.email_list_only input_str with
|
||||||
|
+ match Angstrom.parse_string ~consume:Prefix Email_address_parser_stable_v1.email_list_only input_str with
|
||||||
|
| Error error ->
|
||||||
|
Or_error.error_s [%message
|
||||||
|
"Failed to parse email address(es)"
|
@ -350,11 +350,15 @@ let
|
|||||||
|
|
||||||
gg = callPackage ../development/ocaml-modules/gg { };
|
gg = callPackage ../development/ocaml-modules/gg { };
|
||||||
|
|
||||||
git = callPackage ../development/ocaml-modules/git { inherit (pkgs) git; };
|
git = callPackage ../development/ocaml-modules/git {
|
||||||
|
git-binary = pkgs.git;
|
||||||
|
};
|
||||||
|
|
||||||
git-http = callPackage ../development/ocaml-modules/git-http { };
|
git-http = callPackage ../development/ocaml-modules/git-http { };
|
||||||
|
|
||||||
git-unix = callPackage ../development/ocaml-modules/git-unix { };
|
git-unix = callPackage ../development/ocaml-modules/git-unix {
|
||||||
|
git-binary = pkgs.git;
|
||||||
|
};
|
||||||
|
|
||||||
gmetadom = callPackage ../development/ocaml-modules/gmetadom { };
|
gmetadom = callPackage ../development/ocaml-modules/gmetadom { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user