libwacom: remove ambiguous with statement

Now passes nixf-tidy
This commit is contained in:
Atemu 2024-08-12 23:03:31 +02:00 committed by Philip Taron
parent bf6088c5bc
commit 976209e971
No known key found for this signature in database

View File

@ -69,12 +69,12 @@ stdenv.mkDerivation (finalAttrs: {
tests = finalAttrs.finalPackage.overrideAttrs { doCheck = true; };
};
meta = with lib; {
platforms = platforms.linux;
meta = {
platforms = lib.platforms.linux;
homepage = "https://linuxwacom.github.io/";
changelog = "https://github.com/linuxwacom/libwacom/blob/${finalAttrs.src.rev}/NEWS";
description = "Libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
maintainers = teams.freedesktop.members;
license = licenses.hpnd;
maintainers = lib.teams.freedesktop.members;
license = lib.licenses.hpnd;
};
})