about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/picmi.nix
blob: 30ee9fa84369de00df57405b46cd51881c1b5e17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ mkDerivation, lib
, libkdegames, extra-cmake-modules
, kdeclarative, knewstuff
}:

mkDerivation {
  pname = "picmi";
  meta = with lib; {
    homepage = "https://apps.kde.org/picmi/";
    description = "Nonogram game";
    longDescription = ''The goal is to reveal the hidden pattern in the board by coloring or
      leaving blank the cells in a grid according to numbers given at the side of the grid.
      '';
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };

  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kdeclarative
    knewstuff
    libkdegames
  ];
}