nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fix-function-merge 47 lines 849 B view raw
1{ alcotest 2, base64 3, bigarray-overlap 4, bigstringaf 5, buildDunePackage 6, fetchurl 7, fmt 8, jsonm 9, ke 10, lib 11, ptime 12}: 13 14buildDunePackage rec { 15 pname = "prettym"; 16 version = "0.0.3"; 17 18 src = fetchurl { 19 url = "https://github.com/dinosaure/prettym/releases/download/${version}/prettym-${version}.tbz"; 20 hash = "sha256-kXDxoRref02YpYSlvlK7a5FBX5ccbnWJQzG0axi5jwk="; 21 }; 22 23 duneVersion = "3"; 24 minimalOCamlVersion = "4.08"; 25 26 propagatedBuildInputs = [ 27 bigarray-overlap 28 bigstringaf 29 fmt 30 ke 31 ]; 32 33 checkInputs = [ 34 ptime 35 alcotest 36 jsonm 37 base64 38 ]; 39 doCheck = true; 40 41 meta = { 42 description = "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 = [ ]; 46 }; 47}