zowoq
2026-01-27 14:56:05 +10:00
parent e927c1f202
commit ab10ed24de
+5 -5
View File
@@ -2,7 +2,6 @@
lib,
fetchFromGitHub,
rustPlatform,
stdenvNoCC,
gitMinimal,
versionCheckHook,
nix-update-script,
@@ -10,16 +9,16 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rumdl";
version = "0.0.221";
version = "0.1.1";
src = fetchFromGitHub {
owner = "rvben";
repo = "rumdl";
tag = "v${finalAttrs.version}";
hash = "sha256-r9aVSllmz7fXlePRC/vS6vxmi7zhUyVPEEo6dEkokKg=";
hash = "sha256-cJRJVo/YoSst5NJXAZPJFhXFM6Fmqy/UfuOK2OGLi2o=";
};
cargoHash = "sha256-LedT/ZwDz9FBsHZdObPZc2CoBNR8gNYF/4kvefgmNq8=";
cargoHash = "sha256-Y1KqqDGEjp2+0BwdAgooBjPOQtGbNDwwuXFH97XvXb4=";
cargoBuildFlags = [
"--bin=rumdl"
@@ -27,7 +26,8 @@ rustPlatform.buildRustPackage (finalAttrs: {
# Non-specific tests often fail on Darwin (especially aarch64-darwin),
# on both Hydra and GitHub-hosted runners, even with __darwinAllowLocalNetworking enabled.
doCheck = !stdenvNoCC.hostPlatform.isDarwin;
# proptest fails frequently
doCheck = false;
nativeCheckInputs = [
gitMinimal