firebase-tools: 13.29.2 -> 13.29.3 (#378816)

This commit is contained in:
Gaétan Lepage
2025-02-02 15:05:18 +01:00
committed by GitHub
+7 -10
View File
@@ -5,22 +5,19 @@
fetchFromGitHub,
python3,
xcbuild,
fetchpatch,
}:
let
version = "13.29.2";
buildNpmPackage rec {
pname = "firebase-tools";
version = "13.29.3";
src = fetchFromGitHub {
owner = "firebase";
repo = "firebase-tools";
tag = "v${version}";
hash = "sha256-A/UHJC1BY2A/Zezdvq3W7Ra55TEwqTaYDI8VTwy7yrA=";
hash = "sha256-ZY4hbo84qdvBGOpGWKKWR3bHHTP2+Poa1od7FCy9uSE=";
};
in
buildNpmPackage {
pname = "firebase-tools";
inherit version src;
npmDepsHash = "sha256-5ARfYHmWJFaO7pngWVDQ7R3PAopg4+2Q2kspBTpKclM=";
npmDepsHash = "sha256-UqrTyK5IOK4N6z1UfApqzGCHj0H1/FujWdgJPrQoNxQ=";
postPatch = ''
ln -s npm-shrinkwrap.json package-lock.json
@@ -39,7 +36,7 @@ buildNpmPackage {
};
meta = {
changelog = "https://github.com/firebase/firebase-tools/blob/${src.rev}/CHANGELOG.md";
changelog = "https://github.com/firebase/firebase-tools/blob/v${version}/CHANGELOG.md";
description = "Manage, and deploy your Firebase project from the command line";
homepage = "https://github.com/firebase/firebase-tools";
license = lib.licenses.mit;