turnon: 2.3.1 -> 2.3.4

turnon: skipped network ping tests
This commit is contained in:
mksafavi
2025-02-23 19:48:32 +03:30
parent a197baaa11
commit c32ee9b0bd
+12 -3
View File
@@ -13,17 +13,26 @@
rustPlatform.buildRustPackage rec {
pname = "turnon";
version = "2.3.1";
version = "2.3.4";
src = fetchFromGitHub {
owner = "swsnr";
repo = "turnon";
rev = "v${version}";
hash = "sha256-Dl0uTPXy57W18WBxHpytL6Nq9tTrzYOdC3u1O4Dnm3w=";
hash = "sha256-eKJRyQMZOa/QRUW0VQ0EkXbJSMcYHfCC9wTs0YEB1yo=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-EL7xLXtOzvitVMsDeMUcLR9hdvM2wjBZBEgJPJLanUE=";
cargoHash = "sha256-SjENjQjdg5Vrpd911QOcH9lmW7+BACaN4a/oGb2miI4=";
doCheck = true;
checkFlags = [
# Skipped due to "Permission denied (os error 13)"
"--skip=net::ping::tests::ping_loopback_ipv4"
"--skip=net::ping::tests::ping_loopback_ipv6"
"--skip=net::ping::tests::ping_with_timeout_unroutable"
];
nativeBuildInputs = [
cairo