Merge pull request #261849 from figsoda/starlark

starlark-rust: 0.9.0 -> 0.10.0
This commit is contained in:
Felix Bühler 2023-10-22 20:59:27 +02:00 committed by GitHub
commit 5c00419078
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,31 +1,19 @@
{ lib { lib
, rustPlatform , rustPlatform
, fetchCrate , fetchCrate
, fetchpatch
, stdenv
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "starlark"; pname = "starlark-rust";
version = "0.9.0"; version = "0.10.0";
src = fetchCrate { src = fetchCrate {
inherit pname version; pname = "starlark_bin";
hash = "sha256-h8TBWWw94Ka9C0W0i0aHACq6jO0QOLnLW+wTRzorHcc="; inherit version;
hash = "sha256-7AoNRTLyTYsUass9bMJMBUN+GrfUzEGM9cED5VsRESs=";
}; };
cargoHash = "sha256-OLzotKyiG0JmtjH0ckRImHMPPxfQZ+8IHZtXlo1f8+Y="; cargoHash = "sha256-Q00JJRiubrxnI0nFQqUTbxTTB70XV93HJycjdlvV+74=";
patches = [
# fix test broken due to using `fetchCrate`
# https://github.com/facebookexperimental/starlark-rust/pull/78
(fetchpatch {
name = "fix-test-rust-loc-when-tested-from-the-crate.patch";
url = "https://github.com/facebookexperimental/starlark-rust/commit/0e4f90c77868e506268fcb6c9d37368e5b2b8cf5.patch";
hash = "sha256-c8irAyS2IQ5C6s+0t4+hbW8aFptkwvCu9JHLyZqZsW4=";
stripLen = 1;
})
];
meta = with lib; { meta = with lib; {
description = "A Rust implementation of the Starlark language"; description = "A Rust implementation of the Starlark language";
@ -33,6 +21,6 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/facebookexperimental/starlark-rust/blob/v${version}/CHANGELOG.md"; changelog = "https://github.com/facebookexperimental/starlark-rust/blob/v${version}/CHANGELOG.md";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ figsoda ]; maintainers = with maintainers; [ figsoda ];
broken = stdenv.isAarch64 || stdenv.isDarwin; mainProgram = "starlark";
}; };
} }