Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / picmi.nix
blob30ee9fa84369de00df57405b46cd51881c1b5e17
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     longDescription = ''The goal is to reveal the hidden pattern in the board by coloring or
12       leaving blank the cells in a grid according to numbers given at the side of the grid.
13       '';
14     maintainers = with maintainers; [ freezeboy ];
15     license = licenses.gpl2Plus;
16     platforms = platforms.linux;
17   };
19   nativeBuildInputs = [
20     extra-cmake-modules
21   ];
22   buildInputs = [
23     kdeclarative
24     knewstuff
25     libkdegames
26   ];