rune: 0.13.4 -> 0.14.1 (#451850)

This commit is contained in:
Sandro
2025-12-14 00:35:48 +00:00
committed by GitHub
+11 -8
View File
@@ -2,28 +2,31 @@
lib,
rustPlatform,
fetchCrate,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rune";
version = "0.13.4";
version = "0.14.1";
src = fetchCrate {
pname = "rune-cli";
inherit version;
hash = "sha256-+2eXTkn9yOMhvS8cFwAorLBNIPvIRwsPOsGCl3gtRSE=";
inherit (finalAttrs) version;
hash = "sha256-Y/iCH6hwYRhDnu+lPVcJd2YaK3c4YJbfp9VEP1/c1ic=";
};
cargoHash = "sha256-SgfgoMqr2Cc7+qhf9Ejl4Ect1JR9RqI9I0b+PrdvdOs=";
cargoHash = "sha256-Xp87BvDh3uPtvUMmG1R8g6lEZcf/frEHVXdQ/+kV5OI=";
env = {
RUNE_VERSION = version;
RUNE_VERSION = finalAttrs.version;
};
passthru.updateScript = nix-update-script { };
meta = {
description = "Interpreter for the Rune Language, an embeddable dynamic programming language for Rust";
homepage = "https://rune-rs.github.io/";
changelog = "https://github.com/rune-rs/rune/releases/tag/${version}";
changelog = "https://github.com/rune-rs/rune/releases/tag/${finalAttrs.version}";
license = with lib.licenses; [
asl20
mit
@@ -31,4 +34,4 @@ rustPlatform.buildRustPackage rec {
maintainers = [ ];
mainProgram = "rune";
};
}
})