From 6c9a160f7005a70a04f1e7e16c1f83dcf5cf65bc Mon Sep 17 00:00:00 2001 From: seth Date: Mon, 20 May 2024 03:24:52 -0400 Subject: [PATCH] ntpd-rs: 1.1.0 -> 1.1.2 Diff: https://github.com/pendulum-project/ntpd-rs/compare/v1.1.0...v1.1.2 Changelog: https://github.com/pendulum-project/ntpd-rs/blob/v1.1.2/CHANGELOG.md --- pkgs/tools/networking/ntpd-rs/default.nix | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/networking/ntpd-rs/default.nix b/pkgs/tools/networking/ntpd-rs/default.nix index 200338578513..017550a917ec 100644 --- a/pkgs/tools/networking/ntpd-rs/default.nix +++ b/pkgs/tools/networking/ntpd-rs/default.nix @@ -9,20 +9,20 @@ rustPlatform.buildRustPackage rec { pname = "ntpd-rs"; - version = "1.1.0"; + version = "1.1.2"; src = fetchFromGitHub { owner = "pendulum-project"; repo = "ntpd-rs"; rev = "v${version}"; - hash = "sha256-IoTuI0M+stZNUVpaVsf7JR7uHcamSSVDMJxJ+7n5ayA="; + hash = "sha256-0ykJruuyD1Z/QcmrogodNlMZp05ocXIo3wdygB/AnT0="; }; - cargoHash = "sha256-iZuDNFy8c2UZUh3J11lEtfHlDFN+qPl4iZg+ps7AenE="; + cargoHash = "sha256-Badq3GYr7BoF8VNGGtKTT4/ksuds1zBcSxx5O3vLbzg="; - buildInputs = lib.optionals stdenv.isDarwin ([ + buildInputs = lib.optionals stdenv.isDarwin [ Security - ]); + ]; nativeBuildInputs = [ pandoc installShellFiles ]; postPatch = '' @@ -34,11 +34,9 @@ rustPlatform.buildRustPackage rec { source utils/generate-man.sh ''; - doCheck = true; - checkFlags = [ # doesn't find the testca - "--skip=keyexchange::tests::key_exchange_roundtrip" + "--skip=daemon::keyexchange::tests" # seems flaky? "--skip=algorithm::kalman::peer::tests::test_offset_steering_and_measurements" # needs networking