mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
40 lines
883 B
Nix
40 lines
883 B
Nix
{ alcotest
|
|
, buildDunePackage
|
|
, dune-configurator
|
|
, fetchFromGitHub
|
|
, lib
|
|
, ocaml
|
|
, openssl
|
|
, pkg-config
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ssl";
|
|
version = "0.5.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "savonet";
|
|
repo = "ocaml-ssl";
|
|
rev = version;
|
|
sha256 = "sha256-cQUJ7t7C9R74lDy1/lt+up4E5CogiPbeZpaDveDzJ7c=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ dune-configurator ];
|
|
propagatedBuildInputs = [ openssl ];
|
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
|
checkInputs = [ alcotest ];
|
|
preCheck = ''
|
|
mkdir -p _build/default/tests/
|
|
cp tests/digicert_certificate.pem _build/default/tests/
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://savonet.rastageeks.org/";
|
|
description = "OCaml bindings for libssl ";
|
|
license = "LGPL+link exception";
|
|
maintainers = with lib.maintainers; [ anmonteiro dandellion maggesi ];
|
|
};
|
|
}
|