Merge pull request #328324 from A1ca7raz/ab6
applet-window-buttons6: init at 0.13.0
This commit is contained in:
commit
738c5cc66a
@ -61,6 +61,7 @@
|
||||
libmediawiki = null;
|
||||
|
||||
alpaka = self.callPackage ./misc/alpaka {};
|
||||
applet-window-buttons6 = self.callPackage ./third-party/applet-window-buttons6 {};
|
||||
kdiagram = self.callPackage ./misc/kdiagram {};
|
||||
kdsoap-ws-discovery-client = self.callPackage ./misc/kdsoap-ws-discovery-client {};
|
||||
kirigami-addons = self.callPackage ./misc/kirigami-addons {};
|
||||
|
44
pkgs/kde/third-party/applet-window-buttons6/default.nix
vendored
Normal file
44
pkgs/kde/third-party/applet-window-buttons6/default.nix
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
, kcoreaddons
|
||||
, kdeclarative
|
||||
, kdecoration
|
||||
, libplasma
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "applet-window-buttons6";
|
||||
version = "0.13.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "moodyhunter";
|
||||
repo = "applet-window-buttons6";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-S7JcDPo4QDqi/RtvreFNoPKwTg14bgaFGsuGSDxs5nM=";
|
||||
};
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
kcoreaddons
|
||||
kdeclarative
|
||||
kdecoration
|
||||
libplasma
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Plasma 6 applet in order to show window buttons in your panels";
|
||||
homepage = "https://github.com/moodyhunter/applet-window-buttons6";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ A1ca7raz ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user