rattler-build: 0.37.0 -> 0.38.0 (#387578)

This commit is contained in:
Gaétan Lepage
2025-03-06 13:44:09 +01:00
committed by GitHub
+7 -7
View File
@@ -12,19 +12,19 @@
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rattler-build";
version = "0.37.0";
version = "0.38.0";
src = fetchFromGitHub {
owner = "prefix-dev";
repo = "rattler-build";
tag = "v${version}";
hash = "sha256-tPhgijSjs1RlrKY83C/Gb0qyoUjR+Ivmgm8ge5+T9Rc=";
tag = "v${finalAttrs.version}";
hash = "sha256-l8pMUgSU0L1GhB3FiwDVcSEJCpnfE46bCsyNsZSG0mQ=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-GIfHFbZtNd+WuAhCcwdPYpRSKluFuHLlJLe9hsZA2ek=";
cargoHash = "sha256-TgUPeoOua9oqPPDb+SAlYztd1ZBEFvsSrCYCQGXKhgU=";
doCheck = false; # test requires network access
@@ -62,7 +62,7 @@ rustPlatform.buildRustPackage rec {
meta = {
description = "Universal package builder for Windows, macOS and Linux";
homepage = "https://rattler.build/";
changelog = "https://github.com/prefix-dev/rattler-build/releases/tag/v${version}";
changelog = "https://github.com/prefix-dev/rattler-build/releases/tag/v${finalAttrs.version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
genga898
@@ -70,4 +70,4 @@ rustPlatform.buildRustPackage rec {
];
mainProgram = "rattler-build";
};
}
})