nixpkgs/pkgs/desktops/plasma-5/plasma-sdk.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
942 B
Nix
Raw Normal View History

2021-05-16 20:32:18 +00:00
{ mkDerivation
, extra-cmake-modules
, karchive
, kcompletion
, kconfig
, kconfigwidgets
, kcoreaddons
, kdbusaddons
, kdeclarative
, ki18n
, kiconthemes
, kio
, kitemmodels
2021-05-16 20:32:18 +00:00
, plasma-framework
, kservice
, ktexteditor
, kwidgetsaddons
, kdoctools
2023-08-01 11:22:34 +00:00
, fetchpatch
2021-05-16 20:32:18 +00:00
}:
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "plasma-sdk";
2023-06-20 16:45:09 +00:00
2023-08-01 11:22:34 +00:00
patches = [
# remove duplicate doc entries, fix build
# FIXME: remove for next update
(fetchpatch {
url = "https://invent.kde.org/plasma/plasma-sdk/-/commit/e766c3c0483329f52ba0dd7536c4160131409f8e.patch";
revert = true;
hash = "sha256-NoQbRo+0gT4F4G6YbvTiQulqrsFtnD7z0/0I4teQvUM=";
})
];
2021-05-16 20:32:18 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
karchive
kcompletion
kconfig
kconfigwidgets
kcoreaddons
kdbusaddons
kdeclarative
ki18n
kiconthemes
kio
kitemmodels
2021-05-16 20:32:18 +00:00
plasma-framework
kservice
ktexteditor
kwidgetsaddons
];
}