feroxbuster 2.7.1 -> 2.9.2 https://repology.org/metapackage/feroxbuster/versions attrpath: feroxbuster Checking auto update branch... No auto update branch exists Old version 2.7.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , openssl , pkg-config , rustPlatform , Security }: rustPlatform.buildRustPackage rec { pname = "feroxbuster"; version = "2.9.2"; src = fetchFromGitHub { owner = "epi052"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-HSZqqZngXs5ACsk9xzaqBWK5mUxPyGx3qJOtTURXPgg="; }; # disable linker overrides on aarch64-linux postPatch = '' rm .cargo/config ''; cargoHash = "sha256-pisMqSgW6uPlBXgTUqJBJya84dRmbOJbEYYezuut6Wo="; OPENSSL_NO_VENDOR = true; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; # Tests require network access doCheck = false; meta = with lib; { description = "Fast, simple, recursive content discovery tool"; homepage = "https://github.com/epi052/feroxbuster"; changelog = "https://github.com/epi052/feroxbuster/releases/tag/v${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; platforms = platforms.unix; }; }