nixpkgs/pkgs/development/ocaml-modules/ocurl/default.nix

27 lines
787 B
Nix
Raw Normal View History

{ stdenv, lib, pkg-config, ocaml, findlib, fetchurl, curl, ncurses, lwt }:
2015-01-25 21:08:33 +00:00
if lib.versionOlder ocaml.version "4.02"
then throw "ocurl is not available for OCaml ${ocaml.version}"
else
2015-01-25 21:08:33 +00:00
stdenv.mkDerivation rec {
pname = "ocurl";
version = "0.9.1";
2015-01-25 21:08:33 +00:00
src = fetchurl {
url = "http://ygrek.org.ua/p/release/ocurl/ocurl-${version}.tar.gz";
2020-05-11 06:42:26 +00:00
sha256 = "0n621cxb9012pj280c7821qqsdhypj8qy9qgrah79dkh6a8h2py6";
2015-01-25 21:08:33 +00:00
};
buildInputs = [ pkg-config ocaml findlib ncurses ];
2021-01-16 12:48:12 +00:00
propagatedBuildInputs = [ curl lwt ];
2015-01-25 21:08:33 +00:00
createFindlibDestdir = true;
meta = {
description = "OCaml bindings to libcurl";
license = lib.licenses.mit;
2017-12-03 10:27:30 +00:00
homepage = "http://ygrek.org.ua/p/ocurl/";
maintainers = with lib.maintainers; [ bennofs ];
2021-11-09 19:53:19 +00:00
platforms = ocaml.meta.platforms or [ ];
2015-01-25 21:08:33 +00:00
};
}