af22c928fc
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>
45 lines
761 B
Nix
45 lines
761 B
Nix
{ 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
|
|
];
|
|
}
|