nixpkgs/pkgs/development/ocaml-modules/hacl-star/raw.nix
2024-03-05 14:50:00 +01:00

90 lines
1.7 KiB
Nix

{ lib
, which
, stdenv
, fetchzip
, opaline
, cmake
, ocaml
, findlib
, hacl-star
, ctypes
, cppo
}:
stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-hacl-star-raw";
version = "0.7.1";
src = fetchzip {
url = "https://github.com/cryspen/hacl-packages/releases/download/ocaml-v${version}/hacl-star.${version}.tar.gz";
hash = "sha256-TcAEaJou4BOVXSz5DYewzKfvIpjXmhLAlgF0hlq3ToQ=";
stripRoot = false;
};
patches = [
./aligned-alloc.patch
];
# strictoverflow is disabled because it breaks aarch64-darwin
hardeningDisable = [ "strictoverflow" ];
# Compatibility with ctypes ≥ 0.21
# see: https://github.com/cryspen/hacl-packages/commit/81303b83a54a92d3b5f54f1b8ddbea60438cc2bf
postPatch = ''
substituteInPlace hacl-star-raw/META --replace-warn 'requires="ctypes"' 'requires="ctypes ctypes.stubs"'
patchShebangs ./
'';
buildPhase = ''
runHook preBuild
make -C hacl-star-raw build-c
make -C hacl-star-raw build-bindings
runHook postBuild
'';
preInstall = ''
mkdir $out
mkdir -p $OCAMLFIND_DESTDIR/stublibs
'';
installPhase = ''
runHook preInstall
make -C hacl-star-raw install
runHook postInstall
'';
dontUseCmakeConfigure = true;
dontAddPrefix = true;
dontAddStaticConfigureFlags = true;
createFindlibDestdir = true;
nativeBuildInputs = [
which
cmake
ocaml
findlib
];
propagatedBuildInputs = [
ctypes
];
checkInputs = [
cppo
];
strictDeps = true;
doCheck = true;
meta = {
inherit (ocaml.meta) platforms;
description = "Auto-generated low-level OCaml bindings for EverCrypt/HACL*";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}