5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
36 lines
1,002 B
Nix
36 lines
1,002 B
Nix
{ stdenv, lib, fetchFromGitHub, buildDunePackage, ocaml, qtest, qcheck, num, camlp-streams
|
|
, doCheck ? lib.versionAtLeast ocaml.version "4.08"
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "batteries";
|
|
version = "3.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ocaml-batteries-team";
|
|
repo = "batteries-included";
|
|
rev = "v${version}";
|
|
hash = "sha256-0ZCaJA9xowO9QxCWcyJ1zhqG7+GNkMYJt62+VPOFj4Y=";
|
|
};
|
|
|
|
nativeCheckInputs = [ qtest ];
|
|
checkInputs = [ qcheck ];
|
|
propagatedBuildInputs = [ camlp-streams num ];
|
|
|
|
inherit doCheck;
|
|
checkTarget = "test";
|
|
|
|
meta = {
|
|
homepage = "https://ocaml-batteries-team.github.io/batteries-included/hdoc2/";
|
|
description = "OCaml Batteries Included";
|
|
longDescription = ''
|
|
A community-driven effort to standardize on an consistent, documented,
|
|
and comprehensive development platform for the OCaml programming
|
|
language.
|
|
'';
|
|
license = lib.licenses.lgpl21Plus;
|
|
maintainers = [
|
|
lib.maintainers.maggesi
|
|
];
|
|
};
|
|
}
|