mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
ocamlPackages.prettym: init 0.0.2
This commit is contained in:
parent
c255780e69
commit
153957a389
48
pkgs/development/ocaml-modules/prettym/default.nix
Normal file
48
pkgs/development/ocaml-modules/prettym/default.nix
Normal file
|
@ -0,0 +1,48 @@
|
|||
{ alcotest
|
||||
, base64
|
||||
, bigarray-compat
|
||||
, bigarray-overlap
|
||||
, bigstringaf
|
||||
, buildDunePackage
|
||||
, fetchzip
|
||||
, fmt
|
||||
, jsonm
|
||||
, ke
|
||||
, lib
|
||||
, ptime
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "prettym";
|
||||
version = "0.0.2";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/dinosaure/prettym/releases/download/${version}/prettym-${version}.tbz";
|
||||
sha256 = "03x7jh62mvzc6x2d8xsy456qa6iphw72zm7jmqrakpmsy6zcf2lb";
|
||||
};
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
bigarray-compat
|
||||
bigarray-overlap
|
||||
bigstringaf
|
||||
fmt
|
||||
ke
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
ptime
|
||||
alcotest
|
||||
jsonm
|
||||
base64
|
||||
];
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "A simple bounded encoder to serialize human readable values and respect the 80-column constraint";
|
||||
license = lib.licenses.mit;
|
||||
homepage = "https://github.com/dinosaure/prettym";
|
||||
maintainers = with lib.maintainers; [ superherointj ];
|
||||
};
|
||||
}
|
|
@ -1178,6 +1178,8 @@ let
|
|||
|
||||
ppx_yojson_conv_lib = callPackage ../development/ocaml-modules/ppx_yojson_conv_lib {};
|
||||
|
||||
prettym = callPackage ../development/ocaml-modules/prettym { };
|
||||
|
||||
printbox = callPackage ../development/ocaml-modules/printbox { };
|
||||
|
||||
process = callPackage ../development/ocaml-modules/process { };
|
||||
|
|
Loading…
Reference in a new issue