mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5772ac5a75
In the past I was very active with Python packaging. For several years now I was hardly around as maintainer, so it does not make sense I am listed as a maintainer for these makes. Looking back, I should have removed myself as maintainer already much longer ago. Anyway, better late than never. It's been a fun ride, and I do intend to occasionally contribute to Nixpkgs, but not in the same way it once was.
28 lines
547 B
Nix
28 lines
547 B
Nix
{ lib
|
|
, mkDerivation
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, kauth
|
|
, kcmutils
|
|
, kconfigwidgets
|
|
, kcoreaddons
|
|
, kdbusaddons
|
|
, kwallet
|
|
, kxmlgui
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kwalletmanager";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/kwalletmanager5/";
|
|
|
|
description = "KDE wallet management tool";
|
|
mainProgram = "kwalletmanager5";
|
|
license = with lib.licenses; [ gpl2 ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kauth kcmutils kconfigwidgets kcoreaddons kdbusaddons
|
|
kwallet kxmlgui
|
|
];
|
|
}
|