From 71830f462cba405befd028ca909739b36c0399df Mon Sep 17 00:00:00 2001 From: freezeboy Date: Sun, 26 Jul 2020 01:23:51 +0200 Subject: kturtle: init at 20.04.3 --- pkgs/applications/kde/kturtle.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/applications/kde/kturtle.nix (limited to 'pkgs/applications/kde/kturtle.nix') diff --git a/pkgs/applications/kde/kturtle.nix b/pkgs/applications/kde/kturtle.nix new file mode 100644 index 0000000000000..e16c86dc13621 --- /dev/null +++ b/pkgs/applications/kde/kturtle.nix @@ -0,0 +1,21 @@ +{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, knewstuff }: + +mkDerivation { + name = "kturtle"; + meta = with lib; { + homepage = "https://kde.org/applications/en/utilities/org.kde.kturtle"; + description = "KTurtle is an educational programming environment for learning how to program"; + maintainers = with maintainers; [ freezeboy ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + }; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + kdoctools + ki18n + kio + knewstuff + ]; +} -- cgit 1.4.1