forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / extlib / default.nix
blobcd9f6d9b86ce030eaebf3b3d3c413da8f268f902
1 { buildDunePackage, lib, fetchurl, cppo }:
3 buildDunePackage rec {
4   pname = "extlib";
5   version = "1.7.9";
7   minimalOCamlVersion = "4.02";
9   src = fetchurl {
10     url = "https://ygrek.org/p/release/ocaml-${pname}/${pname}-${version}.tar.gz";
11     hash = "sha512-I4asafA36lIINcBiTTmun7/+Q6ILGOJH3gMiMu1vQZ1me1PSMUxvVtxx02i/C2IBpWwvPypb39kzdmxabLmHaA==";
12   };
14   nativeBuildInputs = [ cppo ];
16   doCheck = true;
18   meta = {
19     homepage = "https://github.com/ygrek/ocaml-extlib";
20     description = "Enhancements to the OCaml Standard Library modules";
21     license = lib.licenses.lgpl21Only;
22     maintainers = [ lib.maintainers.sternenseemann ];
23   };