krunner-symbols: init at 1.1.0
This commit is contained in:
parent
204f7e1725
commit
4ac8c881c3
3 changed files with 42 additions and 0 deletions
40
pkgs/desktops/plasma-5/3rdparty/addons/krunner-symbols.nix
vendored
Normal file
40
pkgs/desktops/plasma-5/3rdparty/addons/krunner-symbols.nix
vendored
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{ lib, stdenv
|
||||||
|
, cmake, fetchFromGitHub, extra-cmake-modules
|
||||||
|
, qtbase, wrapQtAppsHook, ki18n, kdelibs4support, krunner
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "krunner-symbols";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "domschrei";
|
||||||
|
repo = "krunner-symbols";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-YsoZdPTWpk3/YERwerrVEcaf2IfGVJwpq32onhP8Exo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ qtbase ki18n kdelibs4support krunner ];
|
||||||
|
nativeBuildInputs = [ cmake wrapQtAppsHook extra-cmake-modules ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# symbols.cpp hardcodes the location of configuration files
|
||||||
|
substituteInPlace symbols.cpp \
|
||||||
|
--replace "/usr/share/config/krunner-symbol" "$out/share/config/krunner-symbol"
|
||||||
|
|
||||||
|
# change cmake flag names to output using the correct qt-plugin prefix and kservice location
|
||||||
|
substituteInPlace CMakeLists.txt \
|
||||||
|
--replace "LOCATION_PLUGIN" "KDE_INSTALL_PLUGINDIR" \
|
||||||
|
--replace "LOCATION_DESKTOP" "KDE_INSTALL_KSERVICES5DIR"
|
||||||
|
'';
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DLOCATION_CONFIG=share/config" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A little krunner plugin (Plasma 5) to retrieve unicode symbols, or any other string, based on a corresponding keyword";
|
||||||
|
homepage = "https://github.com/domschrei/krunner-symbols";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = with maintainers; [ hqurve ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -158,6 +158,7 @@ let
|
||||||
kwin-dynamic-workspaces = callPackage ./3rdparty/kwin/scripts/dynamic-workspaces.nix { };
|
kwin-dynamic-workspaces = callPackage ./3rdparty/kwin/scripts/dynamic-workspaces.nix { };
|
||||||
kwin-tiling = callPackage ./3rdparty/kwin/scripts/tiling.nix { };
|
kwin-tiling = callPackage ./3rdparty/kwin/scripts/tiling.nix { };
|
||||||
krohnkite = callPackage ./3rdparty/kwin/scripts/krohnkite.nix { };
|
krohnkite = callPackage ./3rdparty/kwin/scripts/krohnkite.nix { };
|
||||||
|
krunner-symbols = callPackage ./3rdparty/addons/krunner-symbols.nix { };
|
||||||
parachute = callPackage ./3rdparty/kwin/scripts/parachute.nix { };
|
parachute = callPackage ./3rdparty/kwin/scripts/parachute.nix { };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1134,6 +1134,7 @@ mapAliases ({
|
||||||
kwin-dynamic-workspaces
|
kwin-dynamic-workspaces
|
||||||
kwin-tiling
|
kwin-tiling
|
||||||
krohnkite
|
krohnkite
|
||||||
|
krunner-symbols
|
||||||
;
|
;
|
||||||
inherit (libsForQt5)
|
inherit (libsForQt5)
|
||||||
sddm
|
sddm
|
||||||
|
|
Loading…
Reference in a new issue