Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.metrics: 0.4.0 → 0.4.1

+2 -10
+2 -3
pkgs/development/ocaml-modules/metrics/default.nix
··· 2 3 buildDunePackage rec { 4 pname = "metrics"; 5 - version = "0.4.0"; 6 7 minimalOCamlVersion = "4.04"; 8 - duneVersion = "3"; 9 10 src = fetchurl { 11 url = "https://github.com/mirage/metrics/releases/download/v${version}/metrics-${version}.tbz"; 12 - sha256 = "sha256-kbh1WktQkDcXE8O1WRm+vtagVfSql8S5gr0bXn/jia8="; 13 }; 14 15 propagatedBuildInputs = [ fmt ];
··· 2 3 buildDunePackage rec { 4 pname = "metrics"; 5 + version = "0.4.1"; 6 7 minimalOCamlVersion = "4.04"; 8 9 src = fetchurl { 10 url = "https://github.com/mirage/metrics/releases/download/v${version}/metrics-${version}.tbz"; 11 + sha256 = "sha256-d+DCD7XB0GED27DsC8YEW+48YcAK0EI8l4Uqx/PGFE0="; 12 }; 13 14 propagatedBuildInputs = [ fmt ];
-7
pkgs/development/ocaml-modules/metrics/unix.nix
··· 6 7 inherit (metrics) version src; 8 9 - duneVersion = "3"; 10 - 11 - # Fixes https://github.com/mirage/metrics/issues/57 12 - postPatch = '' 13 - substituteInPlace src/unix/dune --replace "mtime mtime.clock" "mtime" 14 - ''; 15 - 16 propagatedBuildInputs = [ gnuplot lwt metrics mtime uuidm ]; 17 18 nativeCheckInputs = [ gnuplot ];
··· 6 7 inherit (metrics) version src; 8 9 propagatedBuildInputs = [ gnuplot lwt metrics mtime uuidm ]; 10 11 nativeCheckInputs = [ gnuplot ];