at 23.05-pre 24 lines 686 B view raw
1{ buildDunePackage, lib, fetchurl, cppo }: 2 3buildDunePackage rec { 4 pname = "extlib"; 5 version = "1.7.9"; 6 7 minimalOCamlVersion = "4.02"; 8 9 src = fetchurl { 10 url = "https://ygrek.org/p/release/ocaml-${pname}/${pname}-${version}.tar.gz"; 11 sha512 = "2386ac69f037ea520835c0624d39ae9fbffe43a20b18e247de032232ed6f419d667b53d2314c6f56dc71d368bf0b6201a56c2f3f2a5bdfd933766c5a6cb98768"; 12 }; 13 14 nativeBuildInputs = [ cppo ]; 15 16 doCheck = true; 17 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 }; 24}