You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nixpkgs now throws errors when outputHashAlgo is "md5" this means that stdenv.mkDerivation cannot be used in dvc.nix because of the insecurity of the MD5 hash algorithm. I think a short-term solution would be to create a derivation without going through stdenv.mkDerivation.
It seems that DVC might go with blake3 as their next hashing algorithm:
Nixpkgs now throws errors when outputHashAlgo is "md5" this means that
stdenv.mkDerivation
cannot be used indvc.nix
because of the insecurity of the MD5 hash algorithm. I think a short-term solution would be to create aderivation
without going throughstdenv.mkDerivation
.It seems that DVC might go with blake3 as their next hashing algorithm:
iterative/dvc#3069
However, nix still doesn't support blake3 as the algorithm:
NixOS/nix#8475
Thus, I think we need to continue supporting MD5 for the time being, despite
nixpkgs
dropping support for it.The text was updated successfully, but these errors were encountered: