plasma-panel-spacer-extended: init at 1.9.0 (#335447)

authored by

Arne Keller and committed by
GitHub
a1fa8cc8 4b0cdf8b

+50
+50
pkgs/by-name/pl/plasma-panel-spacer-extended/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + kdePackages, 7 + glib, 8 + nix-update-script, 9 + }: 10 + 11 + stdenv.mkDerivation (finalAttrs: { 12 + pname = "plasma-panel-spacer-extended"; 13 + version = "1.9.0"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "luisbocanegra"; 17 + repo = "plasma-panel-spacer-extended"; 18 + rev = "refs/tags/v${finalAttrs.version}"; 19 + hash = "sha256-3ediynClboG6/dBQTih6jJPGjsTBZhZKOPQAjGLRNmk="; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + cmake 24 + kdePackages.extra-cmake-modules 25 + ]; 26 + 27 + buildInputs = [ 28 + kdePackages.kdeplasma-addons 29 + kdePackages.plasma-desktop 30 + ]; 31 + 32 + strictDeps = true; 33 + 34 + cmakeFlags = [ (lib.cmakeFeature "Qt6_DIR" "${kdePackages.qtbase}/lib/cmake/Qt6") ]; 35 + 36 + propagatedUserEnvPkgs = [ glib ]; 37 + 38 + dontWrapQtApps = true; 39 + 40 + passthru.updateScript = nix-update-script { }; 41 + 42 + meta = { 43 + description = "Spacer with mouse gestures for the KDE Plasma Panel"; 44 + homepage = "https://github.com/luisbocanegra/plasma-panel-spacer-extended"; 45 + changelog = "https://github.com/luisbocanegra/plasma-panel-spacer-extended/blob/main/CHANGELOG.md"; 46 + license = lib.licenses.gpl2Plus; 47 + maintainers = with lib.maintainers; [ HeitorAugustoLN ]; 48 + inherit (kdePackages.kwindowsystem.meta) platforms; 49 + }; 50 + })