mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
ocamlPackages.faraday: 0.8.1 → 0.8.2
This commit is contained in:
parent
8e6ec9fc8f
commit
94d8b98b7e
@ -1,17 +1,12 @@
|
||||
{ buildDunePackage, lib, fetchpatch, faraday, core, async }:
|
||||
{ buildDunePackage, lib, faraday, core_unix, async }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "faraday-async";
|
||||
inherit (faraday) version src;
|
||||
|
||||
patches = lib.optional (lib.versionAtLeast async.version "0.15") (fetchpatch {
|
||||
url = "https://github.com/inhabitedtype/faraday/commit/31c3fc7f91ecca0f1deea10b40fd5e33bcd35f75.patch";
|
||||
sha256 = "05z5gk7hxq7qvwg6f73hdhfcnx19p1dq6wqh8prx667y8zsaq2zj";
|
||||
});
|
||||
|
||||
minimalOCamlVersion = "4.08";
|
||||
|
||||
propagatedBuildInputs = [ faraday core async ];
|
||||
propagatedBuildInputs = [ faraday core_unix async ];
|
||||
|
||||
meta = faraday.meta // {
|
||||
description = "Async support for Faraday";
|
||||
|
@ -2,22 +2,20 @@
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "faraday";
|
||||
version = "0.8.1";
|
||||
version = "0.8.2";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
minimumOCamlVersion = "4.02";
|
||||
minimalOCamlVersion = "4.08";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "inhabitedtype";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-eeR+nst/r2iFxCDmRS+LGr3yl/o27DcsS30YAu1GJmc=";
|
||||
sha256 = "sha256-wR4kDocR1t3OLRuudXH8IccYde552O6Gvo5BHNxRbAI=";
|
||||
};
|
||||
|
||||
checkInputs = [ alcotest ];
|
||||
propagatedBuildInputs = [ bigstringaf ];
|
||||
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "Serialization library built for speed and memory efficiency";
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "faraday-lwt-unix";
|
||||
inherit (faraday) version src useDune2 minimumOCamlVersion;
|
||||
inherit (faraday) version src;
|
||||
|
||||
propagatedBuildInputs = [ lwt faraday-lwt ];
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "faraday-lwt";
|
||||
inherit (faraday) version src useDune2 minimumOCamlVersion;
|
||||
inherit (faraday) version src;
|
||||
|
||||
propagatedBuildInputs = [ faraday lwt ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user