lightningcss: 1.27.0 → 1.28.0 (#353667)

This commit is contained in:
Masum Reza 2024-11-05 09:50:03 +05:30 committed by GitHub
commit dd52e79ae1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,16 +7,16 @@
rustPlatform.buildRustPackage rec {
pname = "lightningcss";
version = "1.27.0";
version = "1.28.0";
src = fetchFromGitHub {
owner = "parcel-bundler";
repo = "lightningcss";
rev = "refs/tags/v${version}";
hash = "sha256-YOTFyIDQIdqnrbXtnnY5U32rk9/fZ+1NcSb3slgkxZU=";
hash = "sha256-nW5tnHD5saY7KnccRg5NsszvrADd/tuoN7SWr7JYBVs=";
};
cargoHash = "sha256-nzRvsdW+PfcS1ocg49JtRQ9RmFJ3iz65plH1ToQXSGU=";
cargoHash = "sha256-He5lb5y3Zd1nygWJWZDzBq5avL81ZKoiZMxtxjKkU7I=";
patches = [
# Backport fix for build error for lightningcss-napi
@ -47,7 +47,6 @@ rustPlatform.buildRustPackage rec {
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ johnrtitor toastal ];
mainProgram = "lightningcss";
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64;
platforms = lib.platforms.all;
};
}