lol

Merge pull request #305819 from konradmalik/mise

mise: 2024.4.0 -> 2024.4.5

authored by

Sandro and committed by
GitHub
09a5961b d57f5333

+9 -3
+9 -3
pkgs/tools/misc/mise/default.nix
··· 17 17 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "mise"; 20 - version = "2024.4.0"; 20 + version = "2024.4.5"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "jdx"; 24 24 repo = "mise"; 25 25 rev = "v${version}"; 26 - hash = "sha256-l+Em04q40R5iTm4lNjY6sRE7Vu7UBl7lPNU9yj/hKzk="; 26 + hash = "sha256-JnPsP19c7oE6bRVOd3Afok0A0Sn/tUOoc1DCjurueW0="; 27 + 28 + # registry is not needed for compilation nor for tests. 29 + # contains files with the same name but different case, which cause problems with hash on darwin 30 + postFetch = '' 31 + rm -rf $out/registry 32 + ''; 27 33 }; 28 34 29 - cargoHash = "sha256-BPPjR0o+M5sTBWRgq3kOL+94qnRKnskLyFRUEPlPQtA="; 35 + cargoHash = "sha256-trf4nJ2BmpzWvZb2YG/6i540k1xvLJVesc6g/AEgaVk="; 30 36 31 37 nativeBuildInputs = [ installShellFiles pkg-config ]; 32 38 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];