depot/third_party/nixpkgs/pkgs/development/ocaml-modules/bitv/default.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

26 lines
591 B
Nix

{
lib,
fetchFromGitHub,
buildDunePackage,
}:
buildDunePackage rec {
pname = "bitv";
version = "2.0";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "backtracking";
repo = "bitv";
tag = version;
hash = "sha256-llfbdrvxrz6323G2LBAtKaXOrHQriFzaz3ulvFVhH6s=";
};
meta = {
description = "Bit vector library for OCaml";
license = lib.licenses.lgpl21;
homepage = "https://github.com/backtracking/bitv";
changelog = "https://github.com/backtracking/bitv/releases/tag/${version}";
maintainers = [ lib.maintainers.vbgl ];
};
}