Merge pull request #198396 from harrisonthorne/palapeli

palapeli: init at 22.08.2
This commit is contained in:
Thomas Tuegel 2022-11-23 10:16:03 -06:00 committed by GitHub
commit 5931cbe8ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 0 deletions

View File

@ -5413,6 +5413,12 @@
fingerprint = "3F35 E4CA CBF4 2DE1 2E90 53E5 03A6 E6F7 8693 6619";
}];
};
harrisonthorne = {
email = "harrisonthorne@proton.me";
github = "harrisonthorne";
githubId = 33523827;
name = "Harrison Thorne";
};
harvidsen = {
email = "harvidsen@gmail.com";
github = "harvidsen";

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 ];
};
}