mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-07 22:11:45 +03:00
kdeFrameworks.kcalendarcore: init
This commit is contained in:
parent
c20cd71d60
commit
3ccb0bef9c
@ -97,6 +97,7 @@ let
|
||||
breeze-icons = callPackage ./breeze-icons.nix {};
|
||||
kapidox = callPackage ./kapidox.nix {};
|
||||
karchive = callPackage ./karchive.nix {};
|
||||
kcalendarcore = callPackage ./kcalendarcore.nix {};
|
||||
kcodecs = callPackage ./kcodecs.nix {};
|
||||
kconfig = callPackage ./kconfig.nix {};
|
||||
kcoreaddons = callPackage ./kcoreaddons.nix {};
|
||||
|
16
pkgs/development/libraries/kde-frameworks/kcalendarcore.nix
Normal file
16
pkgs/development/libraries/kde-frameworks/kcalendarcore.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
mkDerivation,
|
||||
lib,
|
||||
extra-cmake-modules,
|
||||
libical
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "kcalendarcore";
|
||||
meta = {
|
||||
maintainers = [ lib.maintainers.nyanloutre ];
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules ];
|
||||
propagatedBuildInputs = [ libical ];
|
||||
outputs = [ "out" "dev" ];
|
||||
}
|
@ -13664,7 +13664,7 @@ in
|
||||
|
||||
inherit (kdeFrameworks.override { libsForQt5 = self; })
|
||||
attica baloo bluez-qt kactivities kactivities-stats
|
||||
karchive kauth kbookmarks kcmutils kcodecs kcompletion kconfig
|
||||
karchive kauth kbookmarks kcmutils kcalendarcore kcodecs kcompletion kconfig
|
||||
kconfigwidgets kcoreaddons kcrash kdbusaddons kdeclarative kdelibs4support
|
||||
kdesignerplugin kdnssd kemoticons kfilemetadata kglobalaccel kguiaddons
|
||||
khtml ki18n kiconthemes kidletime kimageformats kio kitemmodels kitemviews
|
||||
|
Loading…
Reference in New Issue
Block a user