lxqt.lxqt-sudo: 1.4.0 -> 2.0.0

This commit is contained in:
José Romildo 2024-04-18 14:21:41 -03:00
parent 3b1906e5dd
commit 04da2ce15d

View File

@ -1,43 +1,45 @@
{ lib { lib
, mkDerivation , stdenv
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, lxqt-build-tools
, qtbase
, qttools
, qtx11extras
, qtsvg
, kwindowsystem , kwindowsystem
, liblxqt , liblxqt
, libqtxdg , libqtxdg
, lxqt-build-tools
, qtbase
, qtsvg
, qttools
, qtwayland
, sudo , sudo
, wrapQtAppsHook
, gitUpdater , gitUpdater
}: }:
mkDerivation rec { stdenv.mkDerivation rec {
pname = "lxqt-sudo"; pname = "lxqt-sudo";
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-J7jiap3qZD+P0kGzt+b3wa16pxbS2fr3OmalhV5O9ro="; hash = "sha256-kDcOHqHuAyHTQ7ccsCelPOBieXdRLloEvSMjq9PIa30=";
}; };
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
sudo sudo
]; ];