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

mkDerivation {
  pname = "palapeli";
  nativeBuildInputs = [ extra-cmake-modules kdoctools shared-mime-info ];
  buildInputs = [ libkdegames kio ktextwidgets ];
  meta = {
    homepage = "https://apps.kde.org/palapeli/";
    description = "A single-player jigsaw puzzle game";
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ harrisonthorne ];
  };
}