1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/kde/kwalletmanager.nix

37 lines
629 B
Nix
Raw Normal View History

2016-10-17 09:45:57 +01:00
{ lib
, kdeApp
, kdeWrapper
, extra-cmake-modules
2016-10-17 09:45:57 +01:00
, 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 = [ extra-cmake-modules kdoctools ];
2016-10-17 09:45:57 +01:00
propagatedBuildInputs = [
kauth
kcmutils
kconfigwidgets
kcoreaddons
kdbusaddons
kdelibs4support
kxmlgui
];
};
in kdeWrapper {
inherit unwrapped;
2016-10-17 09:45:57 +01:00
targets = ["bin/kwalletmanager5"];
}