depot/third_party/nixpkgs/pkgs/development/ocaml-modules/io-page/default.nix
Default email 4bac34ead1 Project import generated by Copybara.
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
2023-02-09 12:40:11 +01:00

25 lines
732 B
Nix

{ lib, fetchurl, buildDunePackage, pkg-config, cstruct, bigarray-compat, ounit }:
buildDunePackage rec {
pname = "io-page";
version = "3.0.0";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-${version}.tbz";
sha256 = "sha256-DjbKdNkFa6YQgJDLmLsuvyrweb4/TNvqAiggcj/3hu4=";
};
nativeBuildInputs = [ pkg-config ];
propagatedBuildInputs = [ cstruct bigarray-compat ];
checkInputs = [ ounit ];
doCheck = true;
meta = {
homepage = "https://github.com/mirage/io-page";
license = lib.licenses.isc;
description = "IO memory page library for Mirage backends";
maintainers = with lib.maintainers; [ vbgl ];
};
}