azurite: Fix Darwin builds. Switch from rec to finalAttrs.

This commit is contained in:
commiterate
2025-10-07 19:31:35 -04:00
parent 4d04e06c7f
commit 0db8c73cf6

View File

@@ -1,21 +1,22 @@
{ {
lib, lib,
buildNpmPackage,
fetchFromGitHub,
stdenv, stdenv,
buildNpmPackage,
clang_20,
fetchFromGitHub,
libsecret, libsecret,
nodejs,
pkg-config, pkg-config,
python3,
}: }:
buildNpmPackage rec { buildNpmPackage (finalAttrs: {
pname = "azurite"; pname = "azurite";
version = "3.35.0"; version = "3.35.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Azure"; owner = "Azure";
repo = "Azurite"; repo = "Azurite";
rev = "v${version}"; rev = "v${finalAttrs.version}";
hash = "sha256-sVYiHQJ3nR5vM+oPAHzr/MjuNBMY14afqCHpw32WCiQ="; hash = "sha256-sVYiHQJ3nR5vM+oPAHzr/MjuNBMY14afqCHpw32WCiQ=";
}; };
@@ -23,18 +24,21 @@ buildNpmPackage rec {
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
python3 nodejs.python
]; ]
++ lib.optionals stdenv.hostPlatform.isDarwin [ clang_20 ]; # clang_21 breaks @vscode/vsce's optional dependency keytar
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
libsecret libsecret
]; ];
meta = { meta = {
description = "Open source Azure Storage API compatible server"; description = "Lightweight server clone of Azure Storage that simulates most of the commands supported by it with minimal dependencies";
homepage = "https://github.com/Azure/Azurite"; homepage = "https://github.com/Azure/Azurite";
changelog = "https://github.com/Azure/Azurite/releases/tag/v${version}";
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = with lib.maintainers; [ danielalvsaaker ];
mainProgram = "azurite"; mainProgram = "azurite";
maintainers = with lib.maintainers; [
danielalvsaaker
];
}; };
} })