Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl, cmake, qtbase, extra-cmake-modules }: 2 3stdenv.mkDerivation rec { 4 pname = "libqaccessibilityclient"; 5 version = "0.4.1"; 6 7 src = fetchurl { 8 url = "mirror://kde/stable/libqaccessibilityclient/libqaccessibilityclient-${version}.tar.xz"; 9 sha256 = "sha256-HHaLT0MU/K4qB8t958sq4FIrXwK0Fzrz7ti/sqTYNCk="; 10 }; 11 12 nativeBuildInputs = [ cmake extra-cmake-modules ]; 13 buildInputs = [ qtbase ]; 14 15 outputs = [ "out" "dev" ]; 16 17 dontWrapQtApps = true; 18 19 meta = with lib; { 20 description = "Accessibilty tools helper library, used e.g. by screen readers"; 21 homepage = "https://github.com/KDE/libqaccessibilityclient"; 22 maintainers = with maintainers; [ artturin ]; 23 license = with licenses; [ lgpl3Only /* or */ lgpl21Only ]; 24 platforms = platforms.linux; 25 }; 26}