Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
761 B
Nix
35 lines
761 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchCrate,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rune";
|
|
version = "0.13.4";
|
|
|
|
src = fetchCrate {
|
|
pname = "rune-cli";
|
|
inherit version;
|
|
hash = "sha256-+2eXTkn9yOMhvS8cFwAorLBNIPvIRwsPOsGCl3gtRSE=";
|
|
};
|
|
|
|
cargoHash = "sha256-SgfgoMqr2Cc7+qhf9Ejl4Ect1JR9RqI9I0b+PrdvdOs=";
|
|
|
|
env = {
|
|
RUNE_VERSION = version;
|
|
};
|
|
|
|
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}";
|
|
license = with lib.licenses; [
|
|
asl20
|
|
mit
|
|
];
|
|
maintainers = with lib.maintainers; [ figsoda ];
|
|
mainProgram = "rune";
|
|
};
|
|
}
|