evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / higlo / default.nix
blobfba8e35fb5be6fd28fb5d7796a04fe45e2e85c9f
1 { lib, buildDunePackage, fetchFromGitLab, sedlex, xtmpl }:
3 buildDunePackage rec {
4   pname = "higlo";
5   version = "0.9";
7   src = fetchFromGitLab {
8     domain = "framagit.org";
9     owner = "zoggy";
10     repo = "higlo";
11     rev = version;
12     hash = "sha256-SaFFzp4FCjVLdMLH6mNIv3HzJbkXJ5Ojbku258LCfLI=";
13   };
15   propagatedBuildInputs = [ sedlex xtmpl ];
17   meta = with lib; {
18     description = "OCaml library for syntax highlighting";
19     inherit (src.meta) homepage;
20     license = licenses.lgpl3;
21     maintainers = with maintainers; [ regnat ];
22   };