mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
8be4bd7416
- There is no such thing as KDE 5
37 lines
597 B
Nix
37 lines
597 B
Nix
{ lib
|
|
, kdeApp
|
|
, kdeWrapper
|
|
, ecm
|
|
, kdoctools
|
|
, kauth
|
|
, kcmutils
|
|
, kconfigwidgets
|
|
, kcoreaddons
|
|
, kdbusaddons
|
|
, kdelibs4support
|
|
, kxmlgui
|
|
}:
|
|
|
|
let
|
|
unwrapped = kdeApp {
|
|
name = "kwalletmanager";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
};
|
|
nativeBuildInputs = [ ecm kdoctools ];
|
|
propagatedBuildInputs = [
|
|
kauth
|
|
kcmutils
|
|
kconfigwidgets
|
|
kcoreaddons
|
|
kdbusaddons
|
|
kdelibs4support
|
|
kxmlgui
|
|
];
|
|
};
|
|
in kdeWrapper {
|
|
inherit unwrapped;
|
|
targets = ["bin/kwalletmanager5"];
|
|
}
|