about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kturtle.nix
blob: 1f03f7fcb40757b06eeae04751c7b620b1404610 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, knewstuff }:

mkDerivation {
  pname = "kturtle";
  meta = with lib; {
    homepage = "https://invent.kde.org/education/kturtle";
    description = "An educational programming environment for learning how to program";
    mainProgram = "kturtle";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kdoctools
    ki18n
    kio
    knewstuff
  ];
}