Merge pull request #249017 from aaronjheng/sad

sad: 0.4.22 -> 0.4.23

authored by figsoda and committed by GitHub 02ea30a1 631c76a1

+6 -3
+6 -3
pkgs/tools/text/sad/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 3 , rustPlatform 4 + , python3 4 5 }: 5 6 6 7 rustPlatform.buildRustPackage rec { 7 8 pname = "sad"; 8 - version = "0.4.22"; 9 + version = "0.4.23"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "ms-jpq"; 12 13 repo = pname; 13 14 rev = "v${version}"; 14 - sha256 = "sha256-v1fXEC+bV561cewH17x+1anhfXstGBOHG5rHvhYIvLo="; 15 + hash = "sha256-LNMc+3pXx7VyNq0dws+s13ZA3+f8aJzgbAxzI71NKx0="; 15 16 }; 16 17 17 - cargoSha256 = "sha256-krQTa9R3hmMVKLoBgnbCw+aSQu9HUXfA3XflB8AZv6w="; 18 + cargoHash = "sha256-UjXJmH4UI5Vey2rBy57CI1r13bpGYhIozEoOoyoRDLQ="; 19 + 20 + nativeBuildInputs = [ python3 ]; 18 21 19 22 # fix for compilation on aarch64 20 23 # see https://github.com/NixOS/nixpkgs/issues/145726