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 Normal View History

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