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

30 lines
743 B
Nix
Raw Normal View History

2016-11-21 18:20:25 +00:00
{ stdenv, fetchzip, which, openssl, ocaml, findlib }:
2016-10-05 07:32:30 +00:00
stdenv.mkDerivation rec {
2016-11-21 18:20:25 +00:00
name = "ocaml${ocaml.version}-ssl-${version}";
version = "0.5.5";
2016-11-21 18:20:25 +00:00
src = fetchzip {
2017-10-05 17:09:50 +00:00
url = "https://github.com/savonet/ocaml-ssl/releases/download/${version}/ocaml-ssl-${version}.tar.gz";
sha256 = "0j5zvsx51dg5r7sli7bakv7gfd29z890h0xzi876pg9vywwz9w7l";
};
buildInputs = [which ocaml findlib];
propagatedBuildInputs = [openssl];
dontAddPrefix = true;
createFindlibDestdir = true;
meta = {
homepage = http://savonet.rastageeks.org/;
description = "OCaml bindings for libssl ";
license = "LGPL+link exception";
platforms = ocaml.meta.platforms or [];
maintainers = [
stdenv.lib.maintainers.z77z
];
};
}