nixpkgs/pkgs/applications/kde/picmi.nix

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

29 lines
691 B
Nix
Raw Permalink Normal View History

2022-04-21 21:36:44 +02:00
{ mkDerivation, lib
2020-07-10 16:42:39 +02:00
, libkdegames, extra-cmake-modules
, kdeclarative, knewstuff
}:
mkDerivation {
2020-12-25 00:05:07 +01:00
pname = "picmi";
2020-07-11 16:48:09 +02:00
meta = with lib; {
homepage = "https://apps.kde.org/picmi/";
2020-07-11 16:48:09 +02:00
description = "Nonogram game";
mainProgram = "picmi";
2020-07-11 16:48:09 +02:00
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;
};
2021-12-18 04:36:13 +01:00
2020-07-10 16:42:39 +02:00
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kdeclarative
knewstuff
libkdegames
];
}