ocamlPackages.ocurl: 0.7.8 -> 0.8.0

This commit is contained in:
Vincent Laporte 2017-12-03 10:27:30 +00:00 committed by Vincent Laporte
parent 4c1cd74b5b
commit 50bdf5900e

View file

@ -1,19 +1,19 @@
{ stdenv, ocaml, findlib, fetchurl, curl, ncurses }:
{ stdenv, pkgconfig, ocaml, findlib, fetchurl, curl, ncurses }:
stdenv.mkDerivation rec {
name = "ocurl-0.7.8";
name = "ocurl-0.8.0";
src = fetchurl {
url = "https://forge.ocamlcore.org/frs/download.php/1463/${name}.tar.bz2";
sha256 = "0yn7f3g5wva8nqxh76adpq9rihggc405jkqysfghzwnf3yymyqrr";
url = "http://ygrek.org.ua/p/release/ocurl/${name}.tar.gz";
sha256 = "0292knvm9g038br0dc03lcsnbjqycyiqha256dp4bxkz3vmmz4wr";
};
buildInputs = [ ocaml findlib ncurses ];
buildInputs = [ pkgconfig ocaml findlib ncurses ];
propagatedBuildInputs = [ curl ];
createFindlibDestdir = true;
meta = {
description = "OCaml bindings to libcurl";
license = stdenv.lib.licenses.bsd3;
homepage = http://ocurl.forge.ocamlcore.org/;
license = stdenv.lib.licenses.mit;
homepage = "http://ygrek.org.ua/p/ocurl/";
maintainers = with stdenv.lib.maintainers; [ bennofs ];
platforms = ocaml.meta.platforms or [];
};