palapeli: init at 22.08.2

Adding palapeli because I couldn't find a jigsaw puzzle game in nixpkgs.
Didn't find that anyone on [Reddit](https://www.reddit.com/r/NixOS/comments/yf7h2e/any_packages_for_jigsaw_puzzle_apps/) knew of one, either.

Behold, palapeli in nixpkgs!
This commit is contained in:
Harrison Thorne 2022-10-28 23:39:34 -05:00
parent 219ad1a856
commit 4af0feab9e
No known key found for this signature in database
GPG key ID: 4B21310A52B15162
2 changed files with 23 additions and 0 deletions

View file

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

View file

@ -0,0 +1,22 @@
{ lib
, mkDerivation
, extra-cmake-modules
, shared-mime-info
, kconfig
, kdoctools
, kio
, ktextwidgets
, libkdegames
}:
mkDerivation {
pname = "palapeli";
nativeBuildInputs = [ extra-cmake-modules kdoctools shared-mime-info ];
buildInputs = [ libkdegames kio ktextwidgets ];
meta = {
homepage = "https://apps.kde.org/palapeli/";
description = "A single-player jigsaw puzzle game";
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ harrisonthorne ];
};
}