mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
lxqt-openssh-askpass: init at 0.11.0
This commit is contained in:
parent
bec679780d
commit
bca1f38df3
2 changed files with 37 additions and 0 deletions
36
pkgs/desktops/lxqt/core/lxqt-openssh-askpass/default.nix
Normal file
36
pkgs/desktops/lxqt/core/lxqt-openssh-askpass/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "lxqt-openssh-askpass";
|
||||
version = "0.11.0";
|
||||
|
||||
srcs = fetchFromGitHub {
|
||||
owner = "lxde";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0nz8sv3yrqbzgmd6jahaqaa71axy5x06k091splp9cmab0vzng7c";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
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;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
|
@ -39,5 +39,6 @@ let
|
|||
lxqt-config = callPackage ./core/lxqt-config { };
|
||||
lxqt-globalkeys = callPackage ./core/lxqt-globalkeys { };
|
||||
lxqt-notificationd = callPackage ./core/lxqt-notificationd { };
|
||||
lxqt-openssh-askpass = callPackage ./core/lxqt-openssh-askpass { };
|
||||
|
||||
in self
|
||||
|
|
Loading…
Reference in a new issue