mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
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:
parent
219ad1a856
commit
4af0feab9e
@ -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 {};
|
||||
|
22
pkgs/applications/kde/palapeli.nix
Normal file
22
pkgs/applications/kde/palapeli.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user