firebase-tools: 13.32.0 -> 13.34.0 (#389077)

This commit is contained in:
Austin Horstman
2025-03-14 08:30:10 -05:00
committed by GitHub
+6 -3
View File
@@ -5,19 +5,20 @@
fetchFromGitHub,
python3,
xcbuild,
nix-update-script,
}:
buildNpmPackage rec {
pname = "firebase-tools";
version = "13.32.0";
version = "13.34.0";
src = fetchFromGitHub {
owner = "firebase";
repo = "firebase-tools";
tag = "v${version}";
hash = "sha256-KImt8se4pf/W1XAV8PprYmJRWQqMIAH9FVCEFSV/3Ys=";
hash = "sha256-2Zyg7D0/JYQ/PSYsoOIa/aSjGibySP+XZNWpT+dct8k=";
};
npmDepsHash = "sha256-/EWfXiITSV1r4zVvnHk+9U7MpcUlp7/MNUBJWRw3wRk=";
npmDepsHash = "sha256-3JaafJIfqhS7c8krdXwARufuVV/PG4emvbVv8H3gy8Q=";
postPatch = ''
ln -s npm-shrinkwrap.json package-lock.json
@@ -35,6 +36,8 @@ buildNpmPackage rec {
PUPPETEER_SKIP_DOWNLOAD = true;
};
passthru.updateScript = nix-update-script { };
meta = {
changelog = "https://github.com/firebase/firebase-tools/blob/v${version}/CHANGELOG.md";
description = "Manage, and deploy your Firebase project from the command line";