rwalk: remove lockfile, fixed package with correct hash

This commit is contained in:
pwnwriter
2024-12-31 09:03:08 -05:00
parent dc3a0821fe
commit ca4582d41f
2 changed files with 10 additions and 3268 deletions
-3263
View File
File diff suppressed because it is too large Load Diff
+10 -5
View File
@@ -4,22 +4,22 @@
fetchFromGitHub,
pkg-config,
openssl,
stdenv,
darwin,
versionCheckHook,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "rwalk";
version = "0.8.7";
version = "0.9.0";
src = fetchFromGitHub {
owner = "cestef";
repo = "rwalk";
tag = "v${version}";
hash = "sha256-rEecl8KdPqPreCRq8CZCBfpedInYD7+gfCwCst+VS90=";
hash = "sha256-W42b3fUezMpOPaNmTogUbgn67nCiKteCkkYUAux9Ng4=";
};
cargoHash = "...";
cargoHash = "sha256-R5L19GMOjbXMVfjCuergxVZvAHCTLVkf3rmdvYJCMLU=";
nativeBuildInputs = [
pkg-config
@@ -36,9 +36,14 @@ rustPlatform.buildRustPackage rec {
nativeInstallCheckInputs = [
versionCheckHook
];
versionCheckProgramArg = [ "--version" ];
doInstallCheck = true;
passthru = {
updateScript = nix-update-script { };
};
meta = {
description = "Blazingly fast web directory scanner written in Rust";
homepage = "https://github.com/cestef/rwalk";