2019-10-11 07:02:16 +01:00
|
|
|
{ lib, fetchFromGitHub, buildDunePackage, ocaml, alcotest, bigstringaf }:
|
2017-12-05 18:16:19 +00:00
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "faraday";
|
2020-11-22 08:25:35 +00:00
|
|
|
version = "0.7.2";
|
|
|
|
|
|
|
|
useDune2 = true;
|
2017-12-05 18:16:19 +00:00
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
minimumOCamlVersion = "4.02";
|
|
|
|
|
2017-12-05 18:16:19 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "inhabitedtype";
|
2018-11-05 10:21:46 +00:00
|
|
|
repo = pname;
|
2017-12-05 18:16:19 +00:00
|
|
|
rev = version;
|
2020-11-22 08:25:35 +00:00
|
|
|
sha256 = "0gdysszzk6b6npic4nhpdnz2nbq7rma6aml0rbn113bfh0rmb36x";
|
2017-12-05 18:16:19 +00:00
|
|
|
};
|
|
|
|
|
2020-11-22 08:25:35 +00:00
|
|
|
checkInputs = [ alcotest ];
|
2019-04-06 15:37:32 +01:00
|
|
|
propagatedBuildInputs = [ bigstringaf ];
|
2020-11-22 08:25:35 +00:00
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.05";
|
2017-12-05 18:16:19 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Serialization library built for speed and memory efficiency";
|
2019-04-06 15:37:32 +01:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
2017-12-05 18:16:19 +00:00
|
|
|
inherit (src.meta) homepage;
|
|
|
|
};
|
|
|
|
}
|