nixpkgs/pkgs/applications/kde/kturtle.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
529 B
Nix
Raw Normal View History

2020-07-26 02:23:51 +03:00
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, knewstuff }:
mkDerivation {
2020-12-25 02:05:07 +03:00
pname = "kturtle";
2020-07-26 02:23:51 +03:00
meta = with lib; {
2021-12-28 21:06:42 +03:00
homepage = "https://invent.kde.org/education/kturtle";
description = "An educational programming environment for learning how to program";
2020-07-26 02:23:51 +03:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kdoctools
ki18n
kio
knewstuff
];
}