ocamlPackages.printbox: init at 0.2
This commit is contained in:
parent
b8495898df
commit
f0e7c5f569
26
pkgs/development/ocaml-modules/printbox/default.nix
Normal file
26
pkgs/development/ocaml-modules/printbox/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, buildDunePackage, mdx }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "printbox";
|
||||||
|
version = "0.2";
|
||||||
|
|
||||||
|
minimumOCamlVersion = "4.05";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "c-cube";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "16nwwpp13hzlcm9xqfxc558afm3i5s802dkj69l9s2vp04lgms5n";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ mdx ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/c-cube/printbox/;
|
||||||
|
description = "Allows to print nested boxes, lists, arrays, tables in several formats";
|
||||||
|
license = stdenv.lib.licenses.isc;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
||||||
|
};
|
||||||
|
}
|
@ -675,6 +675,8 @@ let
|
|||||||
|
|
||||||
ppx_tools_versioned = callPackage ../development/ocaml-modules/ppx_tools_versioned { };
|
ppx_tools_versioned = callPackage ../development/ocaml-modules/ppx_tools_versioned { };
|
||||||
|
|
||||||
|
printbox = callPackage ../development/ocaml-modules/printbox { };
|
||||||
|
|
||||||
process = callPackage ../development/ocaml-modules/process { };
|
process = callPackage ../development/ocaml-modules/process { };
|
||||||
|
|
||||||
ptmap = callPackage ../development/ocaml-modules/ptmap { };
|
ptmap = callPackage ../development/ocaml-modules/ptmap { };
|
||||||
|
Loading…
Reference in New Issue
Block a user