lol
at 24.05-pre 22 lines 564 B view raw
1{ lib, buildDunePackage, fetchurl }: 2 3buildDunePackage rec { 4 pname = "mirage-clock"; 5 version = "4.2.0"; 6 7 minimalOCamlVersion = "4.06"; 8 9 src = fetchurl { 10 url = "https://github.com/mirage/mirage-clock/releases/download/v${version}/mirage-clock-${version}.tbz"; 11 hash = "sha256-+hfRXVviPHm6dB9ffLiO1xEt4WpEEM6oHHG5gIaImEc="; 12 }; 13 14 meta = { 15 description = "Libraries and module types for portable clocks"; 16 homepage = "https://github.com/mirage/mirage-clock"; 17 license = lib.licenses.isc; 18 maintainers = [ lib.maintainers.vbgl ]; 19 }; 20} 21 22