nixpkgs/pkgs/applications/kde/picmi.nix

26 lines
617 B
Nix
Raw Normal View History

2020-07-10 14:42:39 +00:00
{ mkDerivation, lib
, 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; {
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;
};
2020-07-10 14:42:39 +00:00
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kdeclarative
knewstuff
libkdegames
];
}