79d39de93a
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ocurl/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 0.8.1 with grep in /nix/store/g76kv7vaw650ibv0rv7544biwpzrdisw-ocurl-0.8.1 - directory tree listing: https://gist.github.com/3093abaf0dd2e39a2eb0d107f14fe8db - du listing: https://gist.github.com/6e66e0fd5554664ca460eaa3e19a44aa
21 lines
648 B
Nix
21 lines
648 B
Nix
{ stdenv, pkgconfig, ocaml, findlib, fetchurl, curl, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocurl-0.8.1";
|
|
src = fetchurl {
|
|
url = "http://ygrek.org.ua/p/release/ocurl/${name}.tar.gz";
|
|
sha256 = "08ldzbx1k3mbjc01fmzsn86ll4paf331bcjss6iig6y6hgc9q3ry";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig ocaml findlib ncurses ];
|
|
propagatedBuildInputs = [ curl ];
|
|
createFindlibDestdir = true;
|
|
meta = {
|
|
description = "OCaml bindings to libcurl";
|
|
license = stdenv.lib.licenses.mit;
|
|
homepage = "http://ygrek.org.ua/p/ocurl/";
|
|
maintainers = with stdenv.lib.maintainers; [ bennofs ];
|
|
platforms = ocaml.meta.platforms or [];
|
|
};
|
|
}
|