2021-01-15 22:18:51 +00:00
|
|
|
{ stdenv, lib, buildDunePackage, fetchurl, ocaml
|
2020-05-29 06:06:01 +00:00
|
|
|
, result, alcotest, cohttp-lwt-unix, odoc, curl }:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "curly";
|
2020-11-03 02:18:15 +00:00
|
|
|
version = "0.2.0";
|
2020-05-29 06:06:01 +00:00
|
|
|
|
|
|
|
minimumOCamlVersion = "4.02";
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
useDune2 = true;
|
|
|
|
|
2020-11-03 02:18:15 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/rgrinberg/curly/releases/download/${version}/curly-${version}.tbz";
|
|
|
|
sha256 = "07vqdrklar0d5i83ip7sjw2c1v18a9m3anw07vmi5ay29pxzal6k";
|
2020-05-29 06:06:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ result ];
|
|
|
|
checkInputs = [ alcotest cohttp-lwt-unix ];
|
2020-11-03 02:18:15 +00:00
|
|
|
# test dependencies are only available for >= 4.08
|
2021-01-15 22:18:51 +00:00
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08"
|
2020-11-03 02:18:15 +00:00
|
|
|
# Some test fails in macOS sandbox
|
|
|
|
# > Fatal error: exception Unix.Unix_error(Unix.EPERM, "bind", "")
|
|
|
|
&& !stdenv.isDarwin;
|
2020-05-29 06:06:01 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/curly.ml \
|
|
|
|
--replace "exe=\"curl\"" "exe=\"${curl}/bin/curl\""
|
|
|
|
'';
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Curly is a brain dead wrapper around the curl command line utility";
|
|
|
|
homepage = "https://github.com/rgrinberg/curly";
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
};
|
2020-05-29 06:06:01 +00:00
|
|
|
}
|
|
|
|
|