mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
37 lines
576 B
Nix
37 lines
576 B
Nix
{ mkDerivation
|
|
, lib
|
|
, extra-cmake-modules
|
|
, qtquickcontrols2
|
|
, kcalendarcore
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kdbusaddons
|
|
, kirigami2
|
|
, ki18n
|
|
, knotifications
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kongress";
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [
|
|
qtquickcontrols2
|
|
kcalendarcore
|
|
kconfig
|
|
kcoreaddons
|
|
kdbusaddons
|
|
kirigami2
|
|
ki18n
|
|
knotifications
|
|
];
|
|
|
|
meta = {
|
|
description = "A companion application for conferences";
|
|
homepage = "https://apps.kde.org/kongress/";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [];
|
|
};
|
|
}
|