nix-doc: 0.6.2 -> 0.6.4

This fixes #270484, which is an issue caused by the tags file not being
sorted by all the fields, creating a race condition where sometimes the
test suite could spuriously fail due to differently ordered output.

Also fixes mystery build failures on darwin.

See also: https://github.com/lf-/nix-doc/issues/24
This commit is contained in:
Jade Lovelace 2023-11-29 15:10:14 -08:00
parent 68efec90db
commit 8397b95db8

View file

@ -2,13 +2,13 @@
rustPlatform.buildRustPackage rec {
pname = "nix-doc";
version = "0.6.2";
version = "0.6.4";
src = fetchFromGitHub {
rev = "v${version}";
owner = "lf-";
repo = "nix-doc";
sha256 = "sha256-H81U0gR/7oWjP1z7JC8tTek+tqzTwyJWgaJQOSyNn5M=";
sha256 = "sha256-yL0oG0NiQ7OdGQ/kZxQbSbNphKapu5HBFNP5E2fVe+Y=";
};
doCheck = true;
@ -29,7 +29,7 @@ rustPlatform.buildRustPackage rec {
RUSTFLAGS = "-Z relro-level=partial";
};
cargoSha256 = "sha256-yYVDToPLhGUYLrPNyyKwsYXe3QOTR26wtl3SCw4Za5s=";
cargoSha256 = "sha256-4bzLZt45ZLTZyZPZ4Nkvz7mNe4oqOIoaZUbCbNWBKG0=";
meta = with lib; {
description = "An interactive Nix documentation tool";