python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / kde / kteatime.nix
blob639bd933103f151508efd282be9c5a35668c3be1
1 { mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kconfig, kcrash, kiconthemes, knotifyconfig }:
3 mkDerivation {
4   pname = "kteatime";
5   meta = with lib; {
6     homepage = "https://kde.org/applications/en/utilities/org.kde.kteatime";
7     description = "A handy timer for steeping tea";
8     maintainers = with maintainers; [ freezeboy ];
9     license = licenses.gpl2Plus;
10     platforms = platforms.linux;
11   };
12   nativeBuildInputs = [
13     extra-cmake-modules
14   ];
15   buildInputs = [
16     kdoctools
17     ki18n
18     kconfig
19     kcrash
20     kiconthemes
21     knotifyconfig
22   ];