nixpkgs/pkgs/applications/kde/knotes.nix

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

86 lines
1.3 KiB
Nix
Raw Normal View History

{
lib,
mkDerivation,
extra-cmake-modules,
kdoctools,
kcompletion,
kconfig,
kconfigwidgets,
kcoreaddons,
kcrash,
kdbusaddons,
kdnssd,
kglobalaccel,
kiconthemes,
kitemmodels,
kitemviews,
kcmutils,
knewstuff,
knotifications,
knotifyconfig,
kparts,
ktextwidgets,
kwidgetsaddons,
kwindowsystem,
grantlee,
grantleetheme,
qtx11extras,
akonadi,
akonadi-notes,
akonadi-search,
kcalutils,
kontactinterface,
libkdepim,
kmime,
pimcommon,
kpimtextedit,
kcalendarcore,
2019-04-15 07:20:17 +00:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "knotes";
2019-04-15 07:20:17 +00:00
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
kcompletion
kconfig
kconfigwidgets
kcoreaddons
kcrash
kdbusaddons
kdnssd
kglobalaccel
kiconthemes
kitemmodels
kitemviews
kcmutils
knewstuff
knotifications
knotifyconfig
kparts
ktextwidgets
kwidgetsaddons
kwindowsystem
2019-04-15 07:20:17 +00:00
grantlee
grantleetheme
qtx11extras
akonadi
akonadi-notes
kcalutils
kontactinterface
libkdepim
kmime
pimcommon
kpimtextedit
akonadi-search
kcalendarcore
2019-04-15 07:20:17 +00:00
];
meta = with lib; {
homepage = "https://apps.kde.org/knotes/";
description = "Popup notes";
license = licenses.gpl2Plus;
};
2019-04-15 07:20:17 +00:00
}