evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / frame.nix
blob78ccdd2a879323bb1f22eb17d0843ea0bbf6d2bd
1 { lib, buildDunePackage, reason, re, pastel, src }:
3 buildDunePackage {
4   inherit src;
6   pname = "frame";
7   version = "0.0.1-unstable-2024-05-07";
9   nativeBuildInputs = [
10     reason
11   ];
13   propagatedBuildInputs = [
14     pastel
15     re
16   ];
18   meta = {
19     description = "Reason Native text layout library";
20     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/frame";
21     license = lib.licenses.mit;
22     maintainers = [ ];
23   };