forked from mirrors/nixpkgs
kaccounts-providers: init 20.12.3
Borrowing expressions from a stalled/stale PR: NixOS/nixpkgs#98212. Co-authored-by: freezeboy <freezeboy@users.noreply.github.com> Signed-off-by: Kenny Ballou <kb@devnulllabs.io>
This commit is contained in:
parent
7ff8b88e6e
commit
af22c928fc
|
@ -94,6 +94,7 @@ let
|
||||||
incidenceeditor = callPackage ./incidenceeditor.nix {};
|
incidenceeditor = callPackage ./incidenceeditor.nix {};
|
||||||
k3b = callPackage ./k3b.nix {};
|
k3b = callPackage ./k3b.nix {};
|
||||||
kaccounts-integration = callPackage ./kaccounts-integration.nix {};
|
kaccounts-integration = callPackage ./kaccounts-integration.nix {};
|
||||||
|
kaccounts-providers = callPackage ./kaccounts-providers.nix {};
|
||||||
kaddressbook = callPackage ./kaddressbook.nix {};
|
kaddressbook = callPackage ./kaddressbook.nix {};
|
||||||
kalarm = callPackage ./kalarm.nix {};
|
kalarm = callPackage ./kalarm.nix {};
|
||||||
kalarmcal = callPackage ./kalarmcal.nix {};
|
kalarmcal = callPackage ./kalarmcal.nix {};
|
||||||
|
|
44
pkgs/applications/kde/kaccounts-providers.nix
Normal file
44
pkgs/applications/kde/kaccounts-providers.nix
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
{ mkDerivation
|
||||||
|
, lib
|
||||||
|
, accounts-qt
|
||||||
|
, extra-cmake-modules
|
||||||
|
, intltool
|
||||||
|
, kaccounts-integration
|
||||||
|
, kcmutils
|
||||||
|
, kcoreaddons
|
||||||
|
, kdeclarative
|
||||||
|
, kdoctools
|
||||||
|
, kio
|
||||||
|
, kpackage
|
||||||
|
, kwallet
|
||||||
|
, qtwebengine
|
||||||
|
, signond
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
pname = "kaccounts-providers";
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://community.kde.org/KTp/Setting_up_KAccounts";
|
||||||
|
description = "Online account providers";
|
||||||
|
maintainers = with maintainers; [ kennyballou ];
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
nativeBuildInputs = [
|
||||||
|
extra-cmake-modules
|
||||||
|
intltool
|
||||||
|
kdoctools
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
accounts-qt
|
||||||
|
kaccounts-integration
|
||||||
|
kcmutils
|
||||||
|
kcoreaddons
|
||||||
|
kdeclarative
|
||||||
|
kio
|
||||||
|
kpackage
|
||||||
|
kwallet
|
||||||
|
qtwebengine
|
||||||
|
signond
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue