feedbackd: 0.8.1 -> 0.8.2

https://gitlab.freedesktop.org/agx/feedbackd/-/tags/v0.8.2

According to the https://source.puri.sm/Librem5/feedbackd/ README:
As of 2025-04-20 Upstream development moved to FDO's gitlab. The new location for code and issues is at https://gitlab.freedesktop.org/agx/feedbackd/
The packaging for the Librem 5 and PureOS continues to live at https://source.puri.sm/Librem5/debs/pkg-feedbackd.
This commit is contained in:
Luflosi 2025-05-21 17:29:54 +02:00
parent a554b067fe
commit 2e24917e8f
No known key found for this signature in database
GPG key ID: 743C5DD6900A1FF0

View file

@ -25,16 +25,16 @@
let
themes = fetchFromGitLab {
domain = "source.puri.sm";
owner = "Librem5";
domain = "gitlab.freedesktop.org";
owner = "agx";
repo = "feedbackd-device-themes";
rev = "v0.4.0";
hash = "sha256-kY/+DyRxKEUzq7ctl6Va14AKUCpWU7NRQhJOwhtkJp8=";
rev = "v0.8.3";
hash = "sha256-z+A2G1g2gNfC0cVWUO/LT3QVvXeotcBd+5UEpEtcPfY=";
};
in
stdenv.mkDerivation (finalAttrs: {
pname = "feedbackd";
version = "0.8.1";
version = "0.8.2";
outputs = [
"out"
@ -43,11 +43,11 @@ stdenv.mkDerivation (finalAttrs: {
];
src = fetchFromGitLab {
domain = "source.puri.sm";
owner = "Librem5";
domain = "gitlab.freedesktop.org";
owner = "agx";
repo = "feedbackd";
rev = "v${finalAttrs.version}";
hash = "sha256-J2BNDF9TyW+srW0pGbGt4/Uw4KPVf/Ke+HJVBldmfCA=";
hash = "sha256-Hd+kHLr+d1+mg9BbD1pCfVZuwmf7Hk02xmDTmR3foh4=";
};
depsBuildBuild = [
@ -114,9 +114,15 @@ stdenv.mkDerivation (finalAttrs: {
strictDeps = true;
meta = with lib; {
description = "Daemon to provide haptic (and later more) feedback on events";
homepage = "https://source.puri.sm/Librem5/feedbackd";
license = licenses.gpl3Plus;
description = "Theme based Haptic, Visual and Audio Feedback";
homepage = "https://gitlab.freedesktop.org/agx/feedbackd/";
license = with licenses; [
# feedbackd
gpl3Plus
# libfeedback library
lgpl21Plus
];
maintainers = with maintainers; [
pacman99
Luflosi