summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocurl/default.nix
blob: 73670fb3125d46b5cd4cd518a664f286ecc953e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, ocaml, findlib, fetchurl, curl, ncurses }:

stdenv.mkDerivation rec {
  name = "ocurl-0.7.2";
  src = fetchurl {
    url = "https://forge.ocamlcore.org/frs/download.php/1463/${name}.tar.gz";
    sha256 = "0yn7f3g5wva8nqxh76adpq9rihggc405jkqysfghzwnf3yymyqrr";
  };

  buildInputs = [ocaml findlib curl ncurses];
  createFindlibDestdir = true;
  meta = {
    description = "OCaml bindings to libcurl";
    license = stdenv.lib.licenses.bsd3;
    homepage = http://ocurl.forge.ocamlcore.org/;
    maintainers = with stdenv.lib.maintainers; [ bennofs ];
    platforms = ocaml.meta.platforms;
  };
}