![R. RyanTM](/assets/img/avatar_default.png)
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
21 lines
648 B
Nix
21 lines
648 B
Nix
{ stdenv, pkgconfig, ocaml, findlib, fetchurl, curl, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocurl-0.8.2";
|
|
src = fetchurl {
|
|
url = "http://ygrek.org.ua/p/release/ocurl/${name}.tar.gz";
|
|
sha256 = "1ax3xdlzgb1zg7d0wr9nwgmh6a45a764m0wk8p6mx07ad94hz0q9";
|
|
};
|
|
|
|
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 [];
|
|
};
|
|
}
|