depot/third_party/nixpkgs/pkgs/development/ocaml-modules/cstruct/default.nix
Default email ed0c4a69f0 Project import generated by Copybara.
GitOrigin-RevId: e3652e0735fbec227f342712f180f4f21f0594f2
2023-03-31 00:05:00 +02:00

26 lines
680 B
Nix

{ lib, fetchurl, buildDunePackage, fmt, alcotest, crowbar }:
buildDunePackage rec {
pname = "cstruct";
version = "6.2.0";
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/ocaml-cstruct/releases/download/v${version}/cstruct-${version}.tbz";
hash = "sha256-mngHM5JYDoNJFI+jq0sbLpidydMNB0AbBMlrfGDwPmI=";
};
buildInputs = [ fmt ];
doCheck = true;
checkInputs = [ alcotest crowbar ];
meta = {
description = "Access C-like structures directly from OCaml";
license = lib.licenses.isc;
homepage = "https://github.com/mirage/ocaml-cstruct";
maintainers = [ lib.maintainers.vbgl ];
};
}