python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / kde / kturtle.nix
blobcf4b2c91ffed29f7c0ebab117d82a028ade72294
1 { mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, knewstuff }:
3 mkDerivation {
4   pname = "kturtle";
5   meta = with lib; {
6     homepage = "https://invent.kde.org/education/kturtle";
7     description = "An educational programming environment for learning how to program";
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     kio
19     knewstuff
20   ];