aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/kde
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-07-26 01:23:51 +0200
committerfreezeboy <freezeboy@users.noreply.github.com>2020-08-21 10:04:17 +0200
commit71830f462cba405befd028ca909739b36c0399df (patch)
treed2ed6773932b2024b8286995659957d4c1c2a4d8 /pkgs/applications/kde
parent4919f3c33b829bacea0510c5cc0cd82091762a83 (diff)
kturtle: init at 20.04.3
Diffstat (limited to 'pkgs/applications/kde')
-rw-r--r--pkgs/applications/kde/default.nix1
-rw-r--r--pkgs/applications/kde/kturtle.nix21
2 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index 40c77ab89b3b..84798a2f5cdf 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -167,6 +167,7 @@ let
ksystemlog = callPackage ./ksystemlog.nix {};
ktnef = callPackage ./ktnef.nix {};
ktouch = callPackage ./ktouch.nix {};
+ kturtle = callPackage ./kturtle.nix {};
kwalletmanager = callPackage ./kwalletmanager.nix {};
kwave = callPackage ./kwave.nix {};
libgravatar = callPackage ./libgravatar.nix {};
diff --git a/pkgs/applications/kde/kturtle.nix b/pkgs/applications/kde/kturtle.nix
new file mode 100644
index 000000000000..e16c86dc1362
--- /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
+ ];
+}