nixpkgs/pkgs/development/libraries/kde-frameworks/plasma-framework.nix

25 lines
942 B
Nix
Raw Normal View History

{ kdeFramework, lib, fetchurl, ecm, kactivities, karchive
2016-04-21 17:32:21 +02:00
, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative
, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio
, knotifications, kpackage, kservice, kwindowsystem, kxmlgui
2016-07-15 16:59:21 +02:00
, qtscript, qtx11extras
2016-04-21 17:32:21 +02:00
}:
kdeFramework {
name = "plasma-framework";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
patches = [
(fetchurl {
url = "https://cgit.kde.org/plasma-framework.git/patch/?id=62b0865492d863cd000814054681ba6a97972cd5";
sha256 = "1ipz79apa9lkvcyfm5pap6v67hzncfz60z7s00zi6rnlbz96cy5f";
name = "plasma-framework-osd-no-dialog.patch";
})
];
2016-07-30 16:36:52 +02:00
nativeBuildInputs = [ ecm kdoctools ];
2016-04-21 17:32:21 +02:00
propagatedBuildInputs = [
kactivities karchive kconfig kconfigwidgets kcoreaddons kdbusaddons
kdeclarative kglobalaccel kguiaddons ki18n kiconthemes kio knotifications
kpackage kservice kwindowsystem kxmlgui qtscript qtx11extras
2016-04-21 17:32:21 +02:00
];
}