rune: 0.13.4 -> 0.14.1 (#451850)
This commit is contained in:
@@ -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";
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user