libjaylink: 0.3.1 -> 0.4

In addition to updating the package, restore the udev role ordering and
use 60 as priority which is used by the libjaylink project. The ordering
is needed in order to make the uaccess tag working since it needs to be
applied before 73-seat-late.rule. uaccess does not conflict with
mode/group configuration.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Felix Singer 2025-02-03 23:06:52 +01:00 committed by Bjørn Forsman
parent d364584d4a
commit df472f9cfe

View File

@ -10,14 +10,14 @@
stdenv.mkDerivation rec {
pname = "libjaylink";
version = "0.3.1";
version = "0.4.0";
src = fetchFromGitLab {
domain = "gitlab.zapb.de";
owner = "libjaylink";
repo = "libjaylink";
tag = version;
hash = "sha256-odJDE1A0WZ9vBXPxaUdthjTgmbmbdHjbyY1PkaM4+vI=";
hash = "sha256-PghPVgovNo/HhNg7c6EGXrqi6jMrb8p/uLqGDIZ7t+s=";
};
nativeBuildInputs = [
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
'';
postInstall = ''
install -Dm644 contrib/99-libjaylink.rules $out/lib/udev/rules.d/libjaylink.rules
install -Dm644 contrib/60-libjaylink.rules $out/lib/udev/rules.d/60-libjaylink.rules
'';
passthru.updateScript = nix-update-script { };