nixpkgs/pkgs/development/ocaml-modules/printbox/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
769 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildDunePackage, ocaml, mdx, gitUpdater }:
2019-06-18 18:24:25 +00:00
buildDunePackage rec {
pname = "printbox";
2024-10-09 12:53:53 +00:00
version = "0.12";
2019-06-18 18:24:25 +00:00
minimalOCamlVersion = "4.04";
2019-06-18 18:24:25 +00:00
src = fetchFromGitHub {
owner = "c-cube";
repo = pname;
rev = "v${version}";
2024-10-09 12:53:53 +00:00
sha256 = "sha256-PQbr2sjASoWz0OHAMV6buAJERpnUJxVpLAigIVnADIc=";
2019-06-18 18:24:25 +00:00
};
nativeCheckInputs = [ mdx.bin ];
2019-06-18 18:24:25 +00:00
# mdx is not available for OCaml < 4.08
doCheck = lib.versionAtLeast ocaml.version "4.08";
2019-06-18 18:24:25 +00:00
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
2019-06-18 18:24:25 +00:00
meta = {
2019-11-18 20:06:50 +00:00
homepage = "https://github.com/c-cube/printbox/";
2019-06-18 18:24:25 +00:00
description = "Allows to print nested boxes, lists, arrays, tables in several formats";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.romildo ];
2019-06-18 18:24:25 +00:00
};
}