nixpkgs/pkgs/desktops/lxqt/core/lxqt-openssh-askpass/default.nix

40 lines
869 B
Nix
Raw Normal View History

2016-10-03 22:56:22 +01:00
{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-openssh-askpass";
2017-02-19 13:20:13 +00:00
version = "0.11.1";
2016-10-03 22:56:22 +01:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 13:20:13 +00:00
sha256 = "030pzys86s7rpgl35kl4b3y7gmv9982j3blmg8927nq4pw61gfj9";
2016-10-03 22:56:22 +01:00
};
2017-02-19 13:20:13 +00:00
nativeBuildInputs = [
cmake
lxqt.lxqt-build-tools
];
2016-10-03 22:56:22 +01:00
buildInputs = [
qt5.qtbase
qt5.qttools
qt5.qtx11extras
qt5.qtsvg
kde5.kwindowsystem
lxqt.liblxqt
lxqt.libqtxdg
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "GUI to query passwords on behalf of SSH agents";
homepage = https://github.com/lxde/lxqt-openssh-askpass;
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
};
}