5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
31 lines
601 B
Nix
31 lines
601 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kdbusaddons
|
|
, kdoctools
|
|
, ki18n
|
|
, kiconthemes
|
|
, knotifications
|
|
, kservice
|
|
, kwidgetsaddons
|
|
, kwindowsystem
|
|
, libgcrypt
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kwallet";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kconfig kcoreaddons kdbusaddons ki18n kiconthemes knotifications
|
|
kservice kwidgetsaddons kwindowsystem libgcrypt
|
|
];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/kwalletd5"
|
|
wrapKDEProgram "$out/bin/kwallet-query"
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|