lxqt.lxqt-openssh-askpass: 1.4.0 -> 2.0.0

This commit is contained in:
José Romildo 2024-04-18 14:21:41 -03:00
parent f0cc0b2d83
commit bf933e59cc

View File

@ -1,42 +1,44 @@
{ lib { lib
, mkDerivation , stdenv
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, lxqt-build-tools
, qtbase
, qttools
, qtsvg
, qtx11extras
, kwindowsystem , kwindowsystem
, liblxqt , liblxqt
, libqtxdg , libqtxdg
, lxqt-build-tools
, qtbase
, qtsvg
, qttools
, qtwayland
, wrapQtAppsHook
, gitUpdater , gitUpdater
}: }:
mkDerivation rec { stdenv.mkDerivation rec {
pname = "lxqt-openssh-askpass"; pname = "lxqt-openssh-askpass";
version = "1.4.0"; version = "2.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lxqt"; owner = "lxqt";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-o/hJdaGtjcJiwjqfvfwfcOUv4YdAeeW+rCxsmZZdJQ0="; hash = "sha256-YDGKp8Fd6lEFSRWGAFUG7SUUFq7gEpJnKlr+ZFsBCRU=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
lxqt-build-tools lxqt-build-tools
qttools qttools
wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [
qtbase
qtx11extras
qtsvg
kwindowsystem kwindowsystem
liblxqt liblxqt
libqtxdg libqtxdg
qtbase
qtsvg
qtwayland
]; ];
passthru.updateScript = gitUpdater { }; passthru.updateScript = gitUpdater { };