evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / res / default.nix
blobb7a4edd69f8edcd6468884ffbde1509d272f4d3e
1 { lib , fetchurl , buildDunePackage }:
3 buildDunePackage rec {
4   pname = "res";
5   version = "5.0.2";
7   minimalOCamlVersion = "4.08";
9   src = fetchurl {
10     url = "https://github.com/mmottl/res/releases/download/${version}/res-${version}.tbz";
11     hash = "sha256-hQxRETCYxy7ZHah5cg+XHtH3wCj/ofq1VHxsPHu91FU=";
12   };
14   doCheck = true;
16   meta = {
17     description = "Library for resizable, contiguous datastructures";
18     homepage = "https://github.com/mmottl/res";
19     changelog = "https://github.com/mmottl/res/blob/${version}/CHANGES.md";
20     license = lib.licenses.lgpl2Plus;
21     maintainers = with lib.maintainers; [ sixstring982 ];
22   };