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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
989 B
Nix
Raw Normal View History

2023-04-14 05:22:41 +00:00
{ lib
, buildDunePackage
, cstruct
, dune-configurator
, fetchurl
, fmt
, optint
, mdx
}:
buildDunePackage rec {
pname = "uring";
2023-10-13 03:36:47 +00:00
version = "0.8";
2023-04-14 05:22:41 +00:00
minimalOCamlVersion = "4.12";
src = fetchurl {
url = "https://github.com/ocaml-multicore/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
2023-10-13 03:36:47 +00:00
hash = "sha256-4OGst19vqEzuNVxO5xxtzS+mEilEBFoEc7lC3j3sTk4=";
2023-04-14 05:22:41 +00:00
};
propagatedBuildInputs = [
cstruct
fmt
optint
];
buildInputs = [
dune-configurator
];
checkInputs = [
mdx
];
nativeCheckInputs = [
mdx.bin
];
doCheck = true;
dontStrip = true;
meta = {
homepage = "https://github.com/ocaml-multicore/ocaml-${pname}";
changelog = "https://github.com/ocaml-multicore/ocaml-${pname}/raw/v${version}/CHANGES.md";
description = "Bindings to io_uring for OCaml";
license = with lib.licenses; [ isc mit ];
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ toastal ];
};
}