fix(hash): evaluation (#89)

This commit is contained in:
Dmitry Chermnykh
2025-08-17 23:33:39 +05:00
committed by Luis Quiñones
parent dd212be919
commit 09489bfb25

View File

@@ -101,8 +101,8 @@ in
src =
if stdenv.hostPlatform.isDarwin
then fetchurl {inherit (variant) url; hash = sha256;}
else fetchzip {inherit (variant) url; hash = sha256;};
then fetchurl {inherit (variant) url; hash = variant.sha256;}
else fetchzip {inherit (variant) url; hash = variant.sha256;};
sourceRoot = lib.optionalString stdenv.hostPlatform.isDarwin ".";