mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 13:03:34 +00:00
4fe4f51ed3
Diff: https://diff.rs/starlark_bin/0.9.0/0.10.0 Changelog: https://github.com/facebookexperimental/starlark-rust/blob/v0.10.0/CHANGELOG.md
27 lines
716 B
Nix
27 lines
716 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchCrate
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "starlark-rust";
|
|
version = "0.10.0";
|
|
|
|
src = fetchCrate {
|
|
pname = "starlark_bin";
|
|
inherit version;
|
|
hash = "sha256-7AoNRTLyTYsUass9bMJMBUN+GrfUzEGM9cED5VsRESs=";
|
|
};
|
|
|
|
cargoHash = "sha256-Q00JJRiubrxnI0nFQqUTbxTTB70XV93HJycjdlvV+74=";
|
|
|
|
meta = with lib; {
|
|
description = "A Rust implementation of the Starlark language";
|
|
homepage = "https://github.com/facebookexperimental/starlark-rust";
|
|
changelog = "https://github.com/facebookexperimental/starlark-rust/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "starlark";
|
|
};
|
|
}
|