mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-10 06:04:14 +00:00
![stuebinm](/assets/img/avatar_default.png)
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
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";
|
|
mainProgram = "konversation";
|
|
license = with lib.licenses; [ gpl2 ];
|
|
homepage = "https://konversation.kde.org";
|
|
};
|
|
}
|