about summary refs log tree commit diff
path: root/pkgs/desktops/lxqt
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-10-03 18:56:22 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2016-10-06 08:02:38 -0300
commitbca1f38df39f03642ec5a5beda7216f811c365a7 (patch)
treeea4f7bd7e05d6ca9a099d7d16aa5a2a56eb72326 /pkgs/desktops/lxqt
parentbec679780d30b5dde09db6333cb1a4fb6e630441 (diff)
downloadnixlib-bca1f38df39f03642ec5a5beda7216f811c365a7.tar
nixlib-bca1f38df39f03642ec5a5beda7216f811c365a7.tar.gz
nixlib-bca1f38df39f03642ec5a5beda7216f811c365a7.tar.bz2
nixlib-bca1f38df39f03642ec5a5beda7216f811c365a7.tar.lz
nixlib-bca1f38df39f03642ec5a5beda7216f811c365a7.tar.xz
nixlib-bca1f38df39f03642ec5a5beda7216f811c365a7.tar.zst
nixlib-bca1f38df39f03642ec5a5beda7216f811c365a7.zip
lxqt-openssh-askpass: init at 0.11.0
Diffstat (limited to 'pkgs/desktops/lxqt')
-rw-r--r--pkgs/desktops/lxqt/core/lxqt-openssh-askpass/default.nix36
-rw-r--r--pkgs/desktops/lxqt/default.nix1
2 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/desktops/lxqt/core/lxqt-openssh-askpass/default.nix b/pkgs/desktops/lxqt/core/lxqt-openssh-askpass/default.nix
new file mode 100644
index 000000000000..202231fbdea9
--- /dev/null
+++ b/pkgs/desktops/lxqt/core/lxqt-openssh-askpass/default.nix
@@ -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;
+  };
+}
diff --git a/pkgs/desktops/lxqt/default.nix b/pkgs/desktops/lxqt/default.nix
index 52f1961e6d7d..9f32897384ce 100644
--- a/pkgs/desktops/lxqt/default.nix
+++ b/pkgs/desktops/lxqt/default.nix
@@ -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