anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / kde / picmi.nix
blob52a1245610b8ba49351df7eb03a94ed136f7f0d5
1 { mkDerivation, lib
2 , libkdegames, extra-cmake-modules
3 , kdeclarative, knewstuff
4 }:
6 mkDerivation {
7   pname = "picmi";
8   meta = with lib; {
9     homepage = "https://apps.kde.org/picmi/";
10     description = "Nonogram game";
11     mainProgram = "picmi";
12     longDescription = ''
13       The goal is to reveal the hidden pattern in the board by coloring or
14       leaving blank the cells in a grid according to numbers given at the side of the grid.
15     '';
16     maintainers = with maintainers; [ freezeboy ];
17     license = licenses.gpl2Plus;
18     platforms = platforms.linux;
19   };
21   nativeBuildInputs = [
22     extra-cmake-modules
23   ];
24   buildInputs = [
25     kdeclarative
26     knewstuff
27     libkdegames
28   ];