nixpkgs/pkgs/development/interpreters/rune/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
914 B
Nix
Raw Normal View History

{ lib
, rustPlatform
, fetchCrate
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "rune";
2024-03-08 13:25:00 +01:00
version = "0.13.2";
src = fetchCrate {
pname = "rune-cli";
inherit version;
2024-03-08 13:25:00 +01:00
hash = "sha256-Xk4gUBxDdnW2AIEvMaEjzVsqCQFK9B/Wyg7RpJ/hbrA=";
};
2024-03-08 13:25:00 +01:00
cargoHash = "sha256-hpJ++mzP2QFE/iHZQvcjT03xPnyPYw7EgsL8NwxrZVQ=";
buildInputs = lib.optionals stdenv.isDarwin [
2023-10-19 16:45:03 +02:00
darwin.apple_sdk.frameworks.CoreServices
darwin.apple_sdk.frameworks.SystemConfiguration
];
env = {
RUNE_VERSION = version;
};
meta = with lib; {
description = "An 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";
};
}