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

25 lines
760 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 {
2020-05-11 06:42:26 +00:00
name = "ocurl-0.9.1";
2015-01-25 21:08:33 +00:00
src = fetchurl {
2017-12-03 10:27:30 +00:00
url = "http://ygrek.org.ua/p/release/ocurl/${name}.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 ];
platforms = ocaml.meta.platforms or [];
2015-01-25 21:08:33 +00:00
};
}