uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
94
pkgs/applications/kde/kalendar.nix
Normal file
94
pkgs/applications/kde/kalendar.nix
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
{ lib
|
||||
, mkDerivation
|
||||
, fetchFromGitLab
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
, makeWrapper
|
||||
|
||||
, qtbase
|
||||
, qtquickcontrols2
|
||||
, qtsvg
|
||||
, qtlocation
|
||||
, qtdeclarative
|
||||
, qqc2-desktop-style
|
||||
|
||||
, kirigami2
|
||||
, kdbusaddons
|
||||
, ki18n
|
||||
, kcalendarcore
|
||||
, kconfigwidgets
|
||||
, kwindowsystem
|
||||
, kcoreaddons
|
||||
, kcontacts
|
||||
, kitemmodels
|
||||
, kxmlgui
|
||||
, knotifications
|
||||
, kiconthemes
|
||||
, kservice
|
||||
, kmime
|
||||
, kpackage
|
||||
, eventviews
|
||||
, calendarsupport
|
||||
|
||||
, akonadi
|
||||
, akonadi-search
|
||||
, akonadi-contacts
|
||||
, akonadi-calendar-tools
|
||||
, kdepim-runtime
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "kalendar";
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qtquickcontrols2
|
||||
qtsvg
|
||||
qtlocation
|
||||
qtdeclarative
|
||||
qqc2-desktop-style
|
||||
|
||||
kirigami2
|
||||
kdbusaddons
|
||||
ki18n
|
||||
kcalendarcore
|
||||
kconfigwidgets
|
||||
kwindowsystem
|
||||
kcoreaddons
|
||||
kcontacts
|
||||
kitemmodels
|
||||
kxmlgui
|
||||
knotifications
|
||||
kiconthemes
|
||||
kservice
|
||||
kmime
|
||||
kpackage
|
||||
eventviews
|
||||
calendarsupport
|
||||
|
||||
akonadi-search
|
||||
akonadi-contacts
|
||||
akonadi-calendar-tools
|
||||
kdepim-runtime
|
||||
];
|
||||
|
||||
propagatedUserEnvPkgs = [ akonadi kdepim-runtime akonadi-search ];
|
||||
postFixup = ''
|
||||
wrapProgram "$out/bin/kalendar" \
|
||||
--prefix PATH : "${lib.makeBinPath [ akonadi kdepim-runtime akonadi-search ]}"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A calendar application using Akonadi to sync with external services (Nextcloud, GMail, ...)";
|
||||
homepage = "https://apps.kde.org/kalendar/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ chuangzhu ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue