Files
nixpkgs/pkgs/development/libraries/libqaccessibilityclient/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

44 lines
926 B
Nix

{
lib,
stdenv,
fetchurl,
cmake,
qtbase,
extra-cmake-modules,
}:
stdenv.mkDerivation rec {
pname = "libqaccessibilityclient";
version = "0.6.0";
src = fetchurl {
url = "mirror://kde/stable/libqaccessibilityclient/libqaccessibilityclient-${version}.tar.xz";
hash = "sha256-TFDESGItycUEHtENp9h7Pk5xzLSdSDGoSSEdQjxfXTM=";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [ qtbase ];
cmakeFlags = [ "-DQT_MAJOR_VERSION=${lib.versions.major qtbase.version}" ];
outputs = [
"out"
"dev"
];
dontWrapQtApps = true;
meta = {
description = "Accessibilty tools helper library, used e.g. by screen readers";
homepage = "https://github.com/KDE/libqaccessibilityclient";
maintainers = with lib.maintainers; [ artturin ];
license = with lib.licenses; [
lgpl3Only # or
lgpl21Only
];
platforms = lib.platforms.linux;
};
}