fixup picmi path and meta record

gstqt5
freezeboy 2020-07-11 16:48:09 +02:00
parent 219f773d3b
commit 535c20b316
2 changed files with 10 additions and 2 deletions

View File

@ -174,7 +174,7 @@ let
messagelib = callPackage ./messagelib.nix {};
minuet = callPackage ./minuet.nix {};
okular = callPackage ./okular.nix {};
picmi = callPackage ./picmi {};
picmi = callPackage ./picmi.nix {};
pimcommon = callPackage ./pimcommon.nix {};
pim-data-exporter = callPackage ./pim-data-exporter.nix {};
pim-sieve-editor = callPackage ./pim-sieve-editor.nix {};

View File

@ -5,7 +5,15 @@
mkDerivation {
name = "picmi";
meta = with lib; { maintainers = with maintainers; [ freezeboy ]; };
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;
};
nativeBuildInputs = [
extra-cmake-modules
];