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

40 lines
905 B
Nix
Raw Normal View History

2017-02-25 18:44:29 +03:00
{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, qtbase, qttools, qtsvg, qtx11extras, kwindowsystem, liblxqt, libqtxdg }:
2016-10-04 00:56:22 +03:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-openssh-askpass";
2017-02-19 16:20:13 +03:00
version = "0.11.1";
2016-10-04 00:56:22 +03:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 16:20:13 +03:00
sha256 = "030pzys86s7rpgl35kl4b3y7gmv9982j3blmg8927nq4pw61gfj9";
2016-10-04 00:56:22 +03:00
};
2017-02-19 16:20:13 +03:00
nativeBuildInputs = [
cmake
2017-02-25 18:44:29 +03:00
lxqt-build-tools
2017-02-19 16:20:13 +03:00
];
2016-10-04 00:56:22 +03:00
buildInputs = [
2017-02-25 18:44:29 +03:00
qtbase
qttools
qtx11extras
qtsvg
kwindowsystem
liblxqt
libqtxdg
2016-10-04 00:56:22 +03:00
];
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 16:20:13 +03:00
maintainers = with maintainers; [ romildo ];
2016-10-04 00:56:22 +03:00
};
}