735e0d7fa8
> Actually, no. I am no longer using IRC and thereby konversation. https://github.com/NixOS/nixpkgs/pull/180595#issuecomment-1178683153
73 lines
994 B
Nix
73 lines
994 B
Nix
{ mkDerivation
|
|
, lib
|
|
, extra-cmake-modules
|
|
, 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 {
|
|
pname = "konversation";
|
|
|
|
buildInputs = [
|
|
kbookmarks
|
|
karchive
|
|
kconfig
|
|
kconfigwidgets
|
|
kcoreaddons
|
|
kcrash
|
|
kdbusaddons
|
|
kdoctools
|
|
kemoticons
|
|
kglobalaccel
|
|
ki18n
|
|
kiconthemes
|
|
kidletime
|
|
kitemviews
|
|
knewstuff
|
|
knotifications
|
|
knotifyconfig
|
|
kwindowsystem
|
|
kio
|
|
kparts
|
|
kwallet
|
|
solid
|
|
sonnet
|
|
phonon
|
|
qtmultimedia
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
|
|
meta = {
|
|
description = "Integrated IRC client for KDE";
|
|
license = with lib.licenses; [ gpl2 ];
|
|
homepage = "https://konversation.kde.org";
|
|
};
|
|
}
|