mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
44 lines
896 B
Nix
44 lines
896 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
cmake,
|
|
qtbase,
|
|
kdePackages,
|
|
}:
|
|
|
|
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
|
|
kdePackages.extra-cmake-modules
|
|
];
|
|
buildInputs = [ qtbase ];
|
|
cmakeFlags = [ "-DQT_MAJOR_VERSION=6" ];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = {
|
|
description = "Accessibility 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;
|
|
};
|
|
}
|