Merge pull request #226657 from Niols/cohttp-5.1.0

ocamlPackages.cohttp*: 5.0.0 -> 5.1.0

authored by

Ulrik Strid and committed by
GitHub
2f0a7008 35c52f89

+6 -4
+3 -1
pkgs/development/ocaml-modules/arp/default.nix
··· 1 { lib 2 , buildDunePackage 3 , fetchurl 4 , cstruct ··· 48 mirage-time 49 ]; 50 51 - doCheck = true; 52 checkInputs = [ 53 alcotest 54 mirage-clock-unix
··· 1 { lib 2 + , stdenv 3 , buildDunePackage 4 , fetchurl 5 , cstruct ··· 49 mirage-time 50 ]; 51 52 + ## NOTE: As of 18 april 2023 and ARP version 3.0.0, tests fail on Darwin. 53 + doCheck = ! stdenv.isDarwin; 54 checkInputs = [ 55 alcotest 56 mirage-clock-unix
+3 -3
pkgs/development/ocaml-modules/cohttp/default.nix
··· 6 7 buildDunePackage rec { 8 pname = "cohttp"; 9 - version = "5.0.0"; 10 11 minimalOCamlVersion = "4.08"; 12 duneVersion = "3"; 13 14 src = fetchurl { 15 - url = "https://github.com/mirage/ocaml-cohttp/releases/download/v${version}/cohttp-${version}.tbz"; 16 - sha256 = "sha256-/W/0uGyBg1XWGzoIYoWW2/UX1qfabo7exIG7BlPKWgU="; 17 }; 18 19 buildInputs = [ jsonm ppx_sexp_conv ];
··· 6 7 buildDunePackage rec { 8 pname = "cohttp"; 9 + version = "5.1.0"; 10 11 minimalOCamlVersion = "4.08"; 12 duneVersion = "3"; 13 14 src = fetchurl { 15 + url = "https://github.com/mirage/ocaml-cohttp/releases/download/v${version}/cohttp-v${version}.tbz"; 16 + sha256 = "sha256-mINgeBO7DSsWd84gYjQNUQFqbh8KBZ+S2bYI/iVWMAc="; 17 }; 18 19 buildInputs = [ jsonm ppx_sexp_conv ];