mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
ff1a94e523
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.
73 lines
1 KiB
Nix
73 lines
1 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";
|
|
};
|
|
}
|