nixpkgs/pkgs/applications/kde/konversation.nix

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

74 lines
1.0 KiB
Nix
Raw Normal View History

{ mkDerivation
, lib
, extra-cmake-modules
2017-05-16 15:56:41 +00:00
, kdoctools
, kbookmarks
, karchive
, kconfig
, kconfigwidgets
, kcoreaddons
, kcrash
, kdbusaddons
, kemoticons
, kglobalaccel
, ki18n
, kiconthemes
, kidletime
, kitemviews
, knewstuff
, knotifications
, knotifyconfig
, kwindowsystem
, kio
, kparts
, kwallet
, solid
, sonnet
, phonon
, qtmultimedia
}:
mkDerivation {
2017-05-16 15:56:41 +00:00
pname = "konversation";
2017-05-16 15:56:41 +00:00
buildInputs = [
kbookmarks
karchive
kconfig
kconfigwidgets
kcoreaddons
kcrash
2017-05-16 15:56:41 +00:00
kdbusaddons
kdoctools
kemoticons
kglobalaccel
ki18n
kiconthemes
kidletime
kitemviews
knewstuff
2017-05-16 15:56:41 +00:00
knotifications
knotifyconfig
kwindowsystem
2017-05-16 15:56:41 +00:00
kio
kparts
kwallet
solid
sonnet
phonon
qtmultimedia
2017-05-16 15:56:41 +00:00
];
2017-05-16 15:56:41 +00:00
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
2017-05-16 15:56:41 +00:00
meta = {
description = "Integrated IRC client for KDE";
mainProgram = "konversation";
2017-05-16 15:56:41 +00:00
license = with lib.licenses; [ gpl2 ];
homepage = "https://konversation.kde.org";
};
}