fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / ocaml-modules / extlib / default.nix
blob9be2ca711fd7db04a70a90d698786d47f961b51a
2   buildDunePackage,
3   lib,
4   fetchurl,
5   cppo,
6 }:
8 buildDunePackage rec {
9   pname = "extlib";
10   version = "1.7.9";
12   minimalOCamlVersion = "4.02";
14   src = fetchurl {
15     url = "https://ygrek.org/p/release/ocaml-${pname}/${pname}-${version}.tar.gz";
16     hash = "sha512-I4asafA36lIINcBiTTmun7/+Q6ILGOJH3gMiMu1vQZ1me1PSMUxvVtxx02i/C2IBpWwvPypb39kzdmxabLmHaA==";
17   };
19   nativeBuildInputs = [ cppo ];
21   doCheck = true;
23   meta = {
24     homepage = "https://github.com/ygrek/ocaml-extlib";
25     description = "Enhancements to the OCaml Standard Library modules";
26     license = lib.licenses.lgpl21Only;
27     maintainers = [ lib.maintainers.sternenseemann ];
28   };