3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix

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

52 lines
871 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, lxqt-build-tools
, qtbase
, qttools
, qtsvg
, qtx11extras
, kwindowsystem
, liblxqt
, libqtxdg
, gitUpdater
}:
2016-10-03 22:56:22 +01:00
mkDerivation rec {
2016-10-03 22:56:22 +01:00
pname = "lxqt-openssh-askpass";
version = "1.2.0";
2016-10-03 22:56:22 +01:00
2017-11-02 01:56:40 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 22:56:22 +01:00
repo = pname;
rev = version;
sha256 = "1uBgP4cOKypZZbMVYdvgM7GyZI2Ef3XmuAfs0nPzHd0=";
2016-10-03 22:56:22 +01:00
};
2017-02-19 13:20:13 +00:00
nativeBuildInputs = [
cmake
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2017-02-19 13:20:13 +00:00
];
2016-10-03 22:56:22 +01:00
buildInputs = [
2017-02-25 15:44:29 +00:00
qtbase
qttools
qtx11extras
qtsvg
kwindowsystem
liblxqt
libqtxdg
2016-10-03 22:56:22 +01:00
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-openssh-askpass";
description = "GUI to query passwords on behalf of SSH agents";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2022-04-14 14:52:15 +01:00
maintainers = teams.lxqt.members;
2016-10-03 22:56:22 +01:00
};
}