kde5.kwalletmanager: init at 16.08.1
This commit is contained in:
parent
58e552fc6d
commit
0cbcb08d22
2 changed files with 36 additions and 0 deletions
|
@ -53,6 +53,7 @@ let
|
|||
kio-extras = callPackage ./kio-extras.nix {};
|
||||
kompare = callPackage ./kompare.nix {};
|
||||
konsole = callPackage ./konsole.nix {};
|
||||
kwalletmanager = callPackage ./kwalletmanager.nix {};
|
||||
libkdcraw = callPackage ./libkdcraw.nix {};
|
||||
libkexiv2 = callPackage ./libkexiv2.nix {};
|
||||
libkipi = callPackage ./libkipi.nix {};
|
||||
|
|
35
pkgs/desktops/kde-5/applications/kwalletmanager.nix
Normal file
35
pkgs/desktops/kde-5/applications/kwalletmanager.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ 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 unwrapped {
|
||||
targets = ["bin/kwalletmanager5"];
|
||||
}
|
Loading…
Reference in a new issue