From 816b7e23bd6749d4264dfaefddf8cb42f4173d61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 7 Nov 2025 15:32:15 +0100 Subject: [PATCH] bluez-headers: 5.83 -> 5.84 Changelog: https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/ChangeLog --- pkgs/by-name/bl/bluez-headers/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/bl/bluez-headers/package.nix b/pkgs/by-name/bl/bluez-headers/package.nix index 2ac0d24640fb..a3e2e4bf15ba 100644 --- a/pkgs/by-name/bl/bluez-headers/package.nix +++ b/pkgs/by-name/bl/bluez-headers/package.nix @@ -10,22 +10,22 @@ stdenv.mkDerivation (finalAttrs: { pname = "bluez-headers"; - version = "5.83"; + version = "5.84"; # This package has the source, because of the emulatorAvailable check in the # bluez function args, that causes an infinite recursion with Python on cross # builds. src = fetchurl { url = "mirror://kernel/linux/bluetooth/bluez-${finalAttrs.version}.tar.xz"; - hash = "sha256-EIUi2QnSIFgTmb/sk9qrYgNVOc7vPdo+eZcHhcY70kw="; + hash = "sha256-W6c9Aw97AAh9Z4ALDjIWAa7A+JKCfHLlosg5DYyIaxE="; }; dontConfigure = true; dontBuild = true; installPhase = '' - mkdir -p $out/include/bluetooth - cp -v lib/*.h "$out/include/bluetooth/" + mkdir -p $out/include/ + cp -rv lib/* "$out/include/" ''; meta = {