mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
0f72d3c8cc
1.7.7 from october 2020 was the last version before Konversation adapted the KDE Gear versioning schema, so move and thus update it accordingly.
74 lines
1.0 KiB
Nix
74 lines
1.0 KiB
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 ];
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
homepage = "https://konversation.kde.org";
|
|
};
|
|
}
|