Merge pull request #122332 from dotlambda/mauikit-1.2.2

libsForQt5.mauikit: 1.2.1 -> 1.2.2
This commit is contained in:
Robert Schütz
2021-05-11 19:12:53 +02:00
committed by GitHub
5 changed files with 108 additions and 10 deletions
@@ -0,0 +1,50 @@
{ lib
, mkDerivation
, fetchFromGitHub
, fetchpatch
, cmake
, extra-cmake-modules
, kcoreaddons
, kdeclarative
, kdecoration
, plasma-framework
}:
mkDerivation rec {
pname = "applet-window-buttons";
version = "0.8.1";
src = fetchFromGitHub {
owner = "psifidotos";
repo = "applet-window-buttons";
rev = version;
sha256 = "0r1h4kbdv6pxj15w4n1w50g8zsl0jrc4808dyfygzwf87mghziyz";
};
patches = [
(fetchpatch {
name = "fix-compilation-error-with-plasma-5.21.patch";
url = "https://github.com/psifidotos/applet-window-buttons/commit/dc5ed862fa3cb943f9c0d561c864ff461156a19e.patch";
sha256 = "17bdkkmy7k402viynj2bpw281qzsn0f1w8gf98gq65wkm4sf4j6k";
})
];
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
kcoreaddons
kdeclarative
kdecoration
plasma-framework
];
meta = with lib; {
description = "Plasma 5 applet in order to show window buttons in your panels";
homepage = "https://github.com/psifidotos/applet-window-buttons";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dotlambda ];
};
}
@@ -0,0 +1,40 @@
{ lib
, mkDerivation
, fetchFromGitLab
, cmake
, extra-cmake-modules
, kconfig
, kio
, mauikit
}:
mkDerivation rec {
pname = "mauikit-filebrowsing";
version = "1.2.2";
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "maui";
repo = "mauikit-filebrowsing";
rev = "v${version}";
sha256 = "1m56lil7w884wn8qycl7y55abvw2vanfy8c4g786200p6acsh3kl";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
kconfig
kio
mauikit
];
meta = with lib; {
homepage = "https://invent.kde.org/maui/mauikit-filebrowsing";
description = "MauiKit File Browsing utilities and controls";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ dotlambda ];
};
}
@@ -3,22 +3,23 @@
, fetchFromGitLab
, cmake
, extra-cmake-modules
, kio
, kconfig
, kcoreaddons
, ki18n
, qtbase
, qtquickcontrols2
, syntax-highlighting
}:
mkDerivation rec {
pname = "mauikit";
version = "1.2.1";
version = "1.2.2";
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "maui";
repo = "mauikit";
rev = "v${version}";
sha256 = "1wimbpbn9yqqdcjd59x83z0mw2fycjz09py2rwimfi8ldmvi5lgy";
sha256 = "1jz0a65bbznjg7aaq19rdyp956wn6xc1x4xigfkhj6mwsvnb49av";
};
nativeBuildInputs = [
@@ -27,9 +28,10 @@ mkDerivation rec {
];
buildInputs = [
kio
kconfig
kcoreaddons
ki18n
qtquickcontrols2
syntax-highlighting
];
meta = with lib; {