nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

ocamlPackages.mirage-logs: init at 1.2.0

authored by

Vincent Laporte and committed by
ehmry
bcd196ca 75b59386

+30
+28
pkgs/development/ocaml-modules/mirage-logs/default.nix
··· 1 + { lib, fetchurl, buildDunePackage 2 + , logs, lwt, mirage-clock, mirage-profile, ptime 3 + , alcotest 4 + }: 5 + 6 + buildDunePackage rec { 7 + pname = "mirage-logs"; 8 + version = "1.2.0"; 9 + 10 + useDune2 = true; 11 + 12 + src = fetchurl { 13 + url = "https://github.com/mirage/mirage-logs/releases/download/v${version}/mirage-logs-v${version}.tbz"; 14 + sha256 = "0h0amzjxy067jljscib7fvw5q8k0adqa8m86affha9hq5jsh07a1"; 15 + }; 16 + 17 + propagatedBuildInputs = [ logs lwt mirage-clock mirage-profile ptime ]; 18 + 19 + doCheck = true; 20 + checkInputs = [ alcotest ]; 21 + 22 + meta = { 23 + description = "A reporter for the Logs library that writes log messages to stderr, using a Mirage `CLOCK` to add timestamps"; 24 + homepage = "https://github.com/mirage/mirage-logs"; 25 + license = lib.licenses.isc; 26 + maintainers = [ lib.maintainers.vbgl ]; 27 + }; 28 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 571 571 572 572 mirage-kv = callPackage ../development/ocaml-modules/mirage-kv { }; 573 573 574 + mirage-logs = callPackage ../development/ocaml-modules/mirage-logs { }; 575 + 574 576 mirage-net = callPackage ../development/ocaml-modules/mirage-net { }; 575 577 576 578 mirage-profile = callPackage ../development/ocaml-modules/mirage-profile { };