lol

Merge pull request #198396 from harrisonthorne/palapeli

palapeli: init at 22.08.2

authored by

Thomas Tuegel and committed by
GitHub
5931cbe8 8eab68f9

+29
+6
maintainers/maintainer-list.nix
··· 5413 5413 fingerprint = "3F35 E4CA CBF4 2DE1 2E90 53E5 03A6 E6F7 8693 6619"; 5414 5414 }]; 5415 5415 }; 5416 + harrisonthorne = { 5417 + email = "harrisonthorne@proton.me"; 5418 + github = "harrisonthorne"; 5419 + githubId = 33523827; 5420 + name = "Harrison Thorne"; 5421 + }; 5416 5422 harvidsen = { 5417 5423 email = "harvidsen@gmail.com"; 5418 5424 github = "harvidsen";
+1
pkgs/applications/kde/default.nix
··· 222 222 messagelib = callPackage ./messagelib.nix {}; 223 223 minuet = callPackage ./minuet.nix {}; 224 224 okular = callPackage ./okular.nix {}; 225 + palapeli = callPackage ./palapeli.nix {}; 225 226 picmi = callPackage ./picmi.nix {}; 226 227 pim-data-exporter = callPackage ./pim-data-exporter.nix {}; 227 228 pim-sieve-editor = callPackage ./pim-sieve-editor.nix {};
+22
pkgs/applications/kde/palapeli.nix
··· 1 + { lib 2 + , mkDerivation 3 + , extra-cmake-modules 4 + , shared-mime-info 5 + , kconfig 6 + , kdoctools 7 + , kio 8 + , ktextwidgets 9 + , libkdegames 10 + }: 11 + 12 + mkDerivation { 13 + pname = "palapeli"; 14 + nativeBuildInputs = [ extra-cmake-modules kdoctools shared-mime-info ]; 15 + buildInputs = [ libkdegames kio ktextwidgets ]; 16 + meta = { 17 + homepage = "https://apps.kde.org/palapeli/"; 18 + description = "A single-player jigsaw puzzle game"; 19 + license = with lib.licenses; [ gpl2 ]; 20 + maintainers = with lib.maintainers; [ harrisonthorne ]; 21 + }; 22 + }