Merge pull request #53059 from schmittlauch/kcharselect
kcharselect: initial packaging
This commit is contained in:
commit
fdb148f405
@ -3911,6 +3911,10 @@
|
|||||||
github = "fkz";
|
github = "fkz";
|
||||||
name = "Fabian Schmitthenner";
|
name = "Fabian Schmitthenner";
|
||||||
};
|
};
|
||||||
|
schmittlauch = {
|
||||||
|
email = "t.schmittlauch+nixos@orlives.de";
|
||||||
|
github = "schmittlauch";
|
||||||
|
};
|
||||||
schneefux = {
|
schneefux = {
|
||||||
email = "schneefux+nixos_pkg@schneefux.xyz";
|
email = "schneefux+nixos_pkg@schneefux.xyz";
|
||||||
github = "schneefux";
|
github = "schneefux";
|
||||||
|
@ -93,6 +93,7 @@ let
|
|||||||
kcalc = callPackage ./kcalc.nix {};
|
kcalc = callPackage ./kcalc.nix {};
|
||||||
kcalcore = callPackage ./kcalcore.nix {};
|
kcalcore = callPackage ./kcalcore.nix {};
|
||||||
kcalutils = callPackage ./kcalutils.nix {};
|
kcalutils = callPackage ./kcalutils.nix {};
|
||||||
|
kcharselect = callPackage ./kcharselect.nix {};
|
||||||
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
||||||
kcontacts = callPackage ./kcontacts.nix {};
|
kcontacts = callPackage ./kcontacts.nix {};
|
||||||
kdav = callPackage ./kdav.nix {};
|
kdav = callPackage ./kdav.nix {};
|
||||||
|
19
pkgs/applications/kde/kcharselect.nix
Normal file
19
pkgs/applications/kde/kcharselect.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
mkDerivation, lib,
|
||||||
|
extra-cmake-modules, kdoctools,
|
||||||
|
kbookmarks, kconfig, kconfigwidgets, kcrash, kcoreaddons, ki18n, kwidgetsaddons, kxmlgui
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "kcharselect";
|
||||||
|
meta = {
|
||||||
|
license = lib.licenses.gpl2Plus;
|
||||||
|
maintainers = [ lib.maintainers.schmittlauch ];
|
||||||
|
description = "A tool to select special characters from all installed fonts and copy them into the clipboard";
|
||||||
|
};
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||||
|
buildInputs = [
|
||||||
|
kbookmarks kconfig kconfigwidgets kcoreaddons kcrash ki18n kwidgetsaddons kxmlgui
|
||||||
|
];
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
}
|
@ -17819,9 +17819,9 @@ in
|
|||||||
|
|
||||||
inherit (kdeApplications)
|
inherit (kdeApplications)
|
||||||
akonadi akregator ark dolphin dragon ffmpegthumbs filelight gwenview k3b
|
akonadi akregator ark dolphin dragon ffmpegthumbs filelight gwenview k3b
|
||||||
kaddressbook kate kcachegrind kcalc kcolorchooser kcontacts kdenlive kdf kdialog keditbookmarks
|
kaddressbook kate kcachegrind kcalc kcharselect kcolorchooser kcontacts kdenlive kdf kdialog
|
||||||
kget kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole kpkpass kitinerary
|
keditbookmarks kget kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
|
||||||
kontact korganizer krdc krfb ksystemlog kwalletmanager marble minuet okular spectacle;
|
kpkpass kitinerary kontact korganizer krdc krfb ksystemlog kwalletmanager marble minuet okular spectacle;
|
||||||
|
|
||||||
okteta = libsForQt5.callPackage ../applications/editors/okteta { };
|
okteta = libsForQt5.callPackage ../applications/editors/okteta { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user