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

21 lines
648 B
Nix
Raw Normal View History

2017-12-03 11:27:30 +01:00
{ stdenv, pkgconfig, ocaml, findlib, fetchurl, curl, ncurses }:
2015-01-25 22:08:33 +01:00
stdenv.mkDerivation rec {
name = "ocurl-0.8.1";
2015-01-25 22:08:33 +01:00
src = fetchurl {
2017-12-03 11:27:30 +01:00
url = "http://ygrek.org.ua/p/release/ocurl/${name}.tar.gz";
sha256 = "08ldzbx1k3mbjc01fmzsn86ll4paf331bcjss6iig6y6hgc9q3ry";
2015-01-25 22:08:33 +01:00
};
2017-12-03 11:27:30 +01:00
buildInputs = [ pkgconfig ocaml findlib ncurses ];
propagatedBuildInputs = [ curl ];
2015-01-25 22:08:33 +01:00
createFindlibDestdir = true;
meta = {
description = "OCaml bindings to libcurl";
2017-12-03 11:27:30 +01:00
license = stdenv.lib.licenses.mit;
homepage = "http://ygrek.org.ua/p/ocurl/";
2015-01-25 22:08:33 +01:00
maintainers = with stdenv.lib.maintainers; [ bennofs ];
platforms = ocaml.meta.platforms or [];
2015-01-25 22:08:33 +01:00
};
}