biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / res / default.nix
blob779a3c3d8a5fab879471b7ffd887f093c694a57f
1 { lib , fetchurl , buildDunePackage }:
3 buildDunePackage rec {
4   pname = "res";
5   version = "5.0.1";
7   minimalOCamlVersion = "4.08";
9   src = fetchurl {
10     url = "https://github.com/mmottl/res/releases/download/${version}/res-${version}.tbz";
11     hash = "sha256-rSrDMQBfnbWAr2LuajP3fveOtOwLyRbKPkaTKsnocQ4=";
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   };