biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / prettym / default.nix
blob0ec93f488eef189b910aa66c295e84334c2ec057
1 { alcotest
2 , base64
3 , bigarray-overlap
4 , bigstringaf
5 , buildDunePackage
6 , fetchurl
7 , fmt
8 , jsonm
9 , ke
10 , lib
11 , ptime
14 buildDunePackage rec {
15   pname = "prettym";
16   version = "0.0.3";
18   src = fetchurl {
19     url = "https://github.com/dinosaure/prettym/releases/download/${version}/prettym-${version}.tbz";
20     hash = "sha256-kXDxoRref02YpYSlvlK7a5FBX5ccbnWJQzG0axi5jwk=";
21   };
23   duneVersion = "3";
24   minimalOCamlVersion = "4.08";
26   propagatedBuildInputs = [
27     bigarray-overlap
28     bigstringaf
29     fmt
30     ke
31   ];
33   checkInputs = [
34     ptime
35     alcotest
36     jsonm
37     base64
38   ];
39   doCheck = true;
41   meta = {
42     description = "A simple bounded encoder to serialize human readable values and respect the 80-column constraint";
43     license = lib.licenses.mit;
44     homepage = "https://github.com/dinosaure/prettym";
45     maintainers = with lib.maintainers; [ ];
46   };