ocamlPackages.bitv: 1.3 -> 2.0

Changelog: https://github.com/backtracking/bitv/releases/tag/2.0
Diff: https://github.com/backtracking/bitv/compare/1.3...2.0
This commit is contained in:
Mutsuha Asada 2025-01-14 15:25:54 +09:00 committed by Vincent Laporte
parent a2fc8c89f3
commit a2b85d4ef5

View File

@ -1,42 +1,26 @@
{
stdenv,
lib,
fetchFromGitHub,
autoreconfHook,
which,
ocaml,
findlib,
buildDunePackage,
}:
if lib.versionOlder ocaml.version "4.02" then
throw "bitv is not available for OCaml ${ocaml.version}"
else
buildDunePackage rec {
pname = "bitv";
version = "2.0";
minimalOCamlVersion = "4.08";
stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-bitv";
version = "1.3";
src = fetchFromGitHub {
owner = "backtracking";
repo = "bitv";
tag = version;
hash = "sha256-llfbdrvxrz6323G2LBAtKaXOrHQriFzaz3ulvFVhH6s=";
};
src = fetchFromGitHub {
owner = "backtracking";
repo = "bitv";
rev = version;
sha256 = "sha256-sZwq6c10hBBS9tGvKlWD9GE3JBrZPByfDrXE6xIPcG4=";
};
nativeBuildInputs = [
autoreconfHook
which
ocaml
findlib
];
createFindlibDestdir = true;
meta = {
description = "Bit vector library for OCaml";
license = lib.licenses.lgpl21;
homepage = "https://github.com/backtracking/bitv";
maintainers = [ lib.maintainers.vbgl ];
inherit (ocaml.meta) platforms;
};
}
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 ];
};
}