2017-12-03 10:27:30 +00:00
|
|
|
{ stdenv, pkgconfig, ocaml, findlib, fetchurl, curl, ncurses }:
|
2015-01-25 21:08:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-14 08:12:44 +01:00
|
|
|
name = "ocurl-0.8.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";
|
2018-05-14 08:12:44 +01:00
|
|
|
sha256 = "08ldzbx1k3mbjc01fmzsn86ll4paf331bcjss6iig6y6hgc9q3ry";
|
2015-01-25 21:08:33 +00:00
|
|
|
};
|
|
|
|
|
2017-12-03 10:27:30 +00:00
|
|
|
buildInputs = [ pkgconfig ocaml findlib ncurses ];
|
2017-04-28 17:10:11 +01:00
|
|
|
propagatedBuildInputs = [ curl ];
|
2015-01-25 21:08:33 +00:00
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = {
|
|
|
|
description = "OCaml bindings to libcurl";
|
2017-12-03 10:27:30 +00:00
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
homepage = "http://ygrek.org.ua/p/ocurl/";
|
2015-01-25 21:08:33 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ bennofs ];
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2015-01-25 21:08:33 +00:00
|
|
|
};
|
|
|
|
}
|