bluez: 5.76 -> 5.78 (#341994)

authored by Fabián Heredia Montiel and committed by GitHub ae51a986 a6d156bb

+14 -21
+14 -21
pkgs/by-name/bl/bluez/package.nix
··· 11 , json_c 12 , libical 13 , pkg-config 14 - , python3 15 , readline 16 , systemdMinimal 17 , udev ··· 24 25 stdenv.mkDerivation (finalAttrs: { 26 pname = "bluez"; 27 - version = "5.76"; 28 29 src = fetchurl { 30 url = "mirror://kernel/linux/bluetooth/bluez-${finalAttrs.version}.tar.xz"; 31 - hash = "sha256-VeLGRZCa2C2DPELOhewgQ04O8AcJQbHqtz+s3SQLvWM="; 32 }; 33 34 - patches = [ 35 - # hog-lib: Fix passing wrong parameters to bt_uhid_get_report_reply 36 - (fetchpatch { 37 - url = "https://github.com/bluez/bluez/commit/5ebaeab4164f80539904b9a520d9b7a8307e06e2.patch"; 38 - hash = "sha256-f1A8DmRPfm+zid4XMj1zsfcLZ0WTEax3YPbydKZF9RE="; 39 - }) 40 - ] 41 - # Disable one failing test with musl libc, also seen by alpine 42 - # https://github.com/bluez/bluez/issues/726 43 - ++ lib.optional (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_64) 44 - (fetchurl { 45 - url = "https://git.alpinelinux.org/aports/plain/main/bluez/disable_aics_unit_testcases.patch?id=8e96f7faf01a45f0ad8449c1cd825db63a8dfd48"; 46 - hash = "sha256-1PJkipqBO3qxxOqRFQKfpWlne1kzTCgtnTFYI1cFQt4="; 47 - }) 48 - ; 49 50 buildInputs = [ 51 alsa-lib ··· 54 glib 55 json_c 56 libical 57 - python3 58 readline 59 udev 60 ]; ··· 62 nativeBuildInputs = [ 63 docutils 64 pkg-config 65 - python3.pkgs.wrapPython 66 ]; 67 68 outputs = [ "out" "dev" ] ··· 122 doCheck = stdenv.hostPlatform.isx86_64; 123 124 postInstall = let 125 - pythonPath = with python3.pkgs; [ 126 dbus-python 127 pygobject3 128 ];
··· 11 , json_c 12 , libical 13 , pkg-config 14 + , python3Packages 15 , readline 16 , systemdMinimal 17 , udev ··· 24 25 stdenv.mkDerivation (finalAttrs: { 26 pname = "bluez"; 27 + version = "5.78"; 28 29 src = fetchurl { 30 url = "mirror://kernel/linux/bluetooth/bluez-${finalAttrs.version}.tar.xz"; 31 + hash = "sha256-gw/tGRXF03W43g9eb0X83qDcxf9f+z0x227Q8A1zxeM="; 32 }; 33 34 + # Disable one failing test with musl libc, also seen by alpine 35 + # https://github.com/bluez/bluez/issues/726 36 + patches = lib.optional (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_64) 37 + (fetchurl { 38 + url = "https://git.alpinelinux.org/aports/plain/main/bluez/disable_aics_unit_testcases.patch?id=8e96f7faf01a45f0ad8449c1cd825db63a8dfd48"; 39 + hash = "sha256-1PJkipqBO3qxxOqRFQKfpWlne1kzTCgtnTFYI1cFQt4="; 40 + }); 41 42 buildInputs = [ 43 alsa-lib ··· 46 glib 47 json_c 48 libical 49 + python3Packages.python 50 readline 51 udev 52 ]; ··· 54 nativeBuildInputs = [ 55 docutils 56 pkg-config 57 + python3Packages.pygments 58 + python3Packages.wrapPython 59 ]; 60 61 outputs = [ "out" "dev" ] ··· 115 doCheck = stdenv.hostPlatform.isx86_64; 116 117 postInstall = let 118 + pythonPath = with python3Packages; [ 119 dbus-python 120 pygobject3 121 ];