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

40 lines
904 B
Nix
Raw Normal View History

2017-02-25 15:44:29 +00:00
{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, qtbase, qttools, qtsvg, qtx11extras, kwindowsystem, liblxqt, libqtxdg }:
2016-10-03 22:56:22 +01:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-openssh-askpass";
2017-11-02 01:56:40 +00:00
version = "0.12.0";
2016-10-03 22:56:22 +01:00
2017-11-02 01:56:40 +00:00
src = fetchFromGitHub {
2016-10-03 22:56:22 +01:00
owner = "lxde";
repo = pname;
rev = version;
2017-11-02 01:56:40 +00:00
sha256 = "16xcw4yll6i9vij16kdb10s4aq2s57x4yjlwv6d8r75y5gq9iiw6";
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
];
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
};
}