mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
43a7d90e97
This reverts commit 9769952933
.
19 lines
656 B
Nix
19 lines
656 B
Nix
{ kdeFramework, lib, extra-cmake-modules, kconfig, kconfigwidgets
|
|
, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes
|
|
, knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt
|
|
, makeQtWrapper }:
|
|
|
|
kdeFramework {
|
|
name = "kwallet";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
|
|
propagatedBuildInputs = [
|
|
kconfig kconfigwidgets kcoreaddons kdbusaddons ki18n kiconthemes
|
|
knotifications kservice kwidgetsaddons kwindowsystem libgcrypt
|
|
];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/kwalletd5"
|
|
wrapQtProgram "$out/bin/kwallet-query"
|
|
'';
|
|
}
|