nixpkgs/pkgs/applications/kde/keysmith.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
695 B
Nix
Raw Normal View History

2021-07-14 05:12:01 +00:00
{
lib,
mkDerivation,
cmake,
extra-cmake-modules,
kdbusaddons,
ki18n,
kirigami2,
kirigami-addons,
2021-07-14 05:12:01 +00:00
kwindowsystem,
libsodium,
qtquickcontrols2,
}:
mkDerivation rec {
pname = "keysmith";
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
kdbusaddons
ki18n
kirigami2
kirigami-addons
2021-07-14 05:12:01 +00:00
kwindowsystem
libsodium
qtquickcontrols2
];
meta = with lib; {
description = "OTP client for Plasma Mobile and Desktop";
mainProgram = "keysmith";
2021-07-14 05:12:01 +00:00
license = licenses.gpl3;
homepage = "https://github.com/KDE/keysmith";
maintainers = with maintainers; [ shamilton ];
2021-07-14 05:12:01 +00:00
platforms = platforms.linux;
};
}