mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, topkg
|
|
, cpuid, ocb-stubblr
|
|
, cstruct, zarith, ppx_sexp_conv, sexplib
|
|
, cstruct-lwt ? null
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
let withLwt = cstruct-lwt != null; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocaml${ocaml.version}-nocrypto-${version}";
|
|
version = "0.5.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mirleft";
|
|
repo = "ocaml-nocrypto";
|
|
rev = "v${version}";
|
|
sha256 = "0nhnlpbqh3mf9y2cxivlvfb70yfbdpvg6jslzq64xblpgjyg443p";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild topkg cpuid ocb-stubblr
|
|
ppx_sexp_conv ];
|
|
propagatedBuildInputs = [ cstruct zarith sexplib ] ++ optional withLwt cstruct-lwt;
|
|
|
|
buildPhase = ''
|
|
LD_LIBRARY_PATH=${cpuid}/lib/ocaml/${ocaml.version}/site-lib/stubslibs/ \
|
|
${topkg.buildPhase} --with-lwt ${boolToString withLwt}
|
|
'';
|
|
inherit (topkg) installPhase;
|
|
|
|
meta = {
|
|
homepage = https://github.com/mirleft/ocaml-nocrypto;
|
|
description = "Simplest possible crypto to support TLS";
|
|
license = stdenv.lib.licenses.bsd2;
|
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
|
};
|
|
}
|