1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 08:31:59 +00:00
nixpkgs/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix

37 lines
823 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, cmake, lxqt-build-tools, qtbase, qttools, qtsvg, qtx11extras, kwindowsystem, liblxqt, libqtxdg }:
2016-10-03 22:56:22 +01:00
mkDerivation rec {
2016-10-03 22:56:22 +01:00
pname = "lxqt-openssh-askpass";
version = "0.14.1";
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 = "04jmvhhlhhspwzj4hfq7fnaa3h7h02z3rlq8p55hzlzkvshqqh1q";
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
];
meta = with lib; {
2016-10-03 22:56:22 +01:00
description = "GUI to query passwords on behalf of SSH agents";
homepage = https://github.com/lxqt/lxqt-openssh-askpass;
2016-10-03 22:56:22 +01:00
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 13:20:13 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 22:56:22 +01:00
};
}