41 lines
947 B
Nix
41 lines
947 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchCrate,
|
|
stdenv,
|
|
darwin,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rune";
|
|
version = "0.13.4";
|
|
|
|
src = fetchCrate {
|
|
pname = "rune-cli";
|
|
inherit version;
|
|
hash = "sha256-+2eXTkn9yOMhvS8cFwAorLBNIPvIRwsPOsGCl3gtRSE=";
|
|
};
|
|
|
|
cargoHash = "sha256-yMqxd7PlpEEVS0jJwProaVjKUsU5TuebGTMrWiMFsM8=";
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
env = {
|
|
RUNE_VERSION = version;
|
|
};
|
|
|
|
meta = with lib; {
|
|
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 licenses; [
|
|
asl20
|
|
mit
|
|
];
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "rune";
|
|
};
|
|
}
|