9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
25 lines
760 B
Nix
25 lines
760 B
Nix
{ stdenv, lib, pkg-config, ocaml, findlib, fetchurl, curl, ncurses, lwt }:
|
|
|
|
if lib.versionOlder ocaml.version "4.02"
|
|
then throw "ocurl is not available for OCaml ${ocaml.version}"
|
|
else
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocurl-0.9.1";
|
|
src = fetchurl {
|
|
url = "http://ygrek.org.ua/p/release/ocurl/${name}.tar.gz";
|
|
sha256 = "0n621cxb9012pj280c7821qqsdhypj8qy9qgrah79dkh6a8h2py6";
|
|
};
|
|
|
|
buildInputs = [ pkg-config ocaml findlib ncurses ];
|
|
propagatedBuildInputs = [ curl lwt ];
|
|
createFindlibDestdir = true;
|
|
meta = {
|
|
description = "OCaml bindings to libcurl";
|
|
license = lib.licenses.mit;
|
|
homepage = "http://ygrek.org.ua/p/ocurl/";
|
|
maintainers = with lib.maintainers; [ bennofs ];
|
|
platforms = ocaml.meta.platforms or [];
|
|
};
|
|
}
|