lol
at 23.05-pre 26 lines 639 B view raw
1{ lib, buildDunePackage, ocaml, fetchurl, alcotest }: 2 3buildDunePackage rec { 4 pname = "gmap"; 5 version = "0.3.0"; 6 7 useDune2 = true; 8 9 src = fetchurl { 10 url = "https://github.com/hannesm/gmap/releases/download/${version}/gmap-${version}.tbz"; 11 sha256 = "073wa0lrb0jj706j87cwzf1a8d1ff14100mnrjs8z3xc4ri9xp84"; 12 }; 13 14 minimumOCamlVersion = "4.03"; 15 16 checkInputs = [ alcotest ]; 17 18 doCheck = lib.versionAtLeast ocaml.version "4.08"; 19 20 meta = { 21 description = "Heterogenous maps over a GADT"; 22 homepage = "https://github.com/hannesm/gmap"; 23 license = lib.licenses.isc; 24 maintainers = [ lib.maintainers.vbgl ]; 25 }; 26}