lxqt.qtxdg-tools: 3.12.0 -> 4.0.0

This commit is contained in:
José Romildo 2024-04-18 14:21:42 -03:00
parent 628a433889
commit d9de74a22e
1 changed files with 10 additions and 6 deletions

View File

@ -1,32 +1,36 @@
{ lib
, mkDerivation
, stdenv
, fetchFromGitHub
, cmake
, qtbase
, libqtxdg
, lxqt-build-tools
, qtbase
, qtsvg
, wrapQtAppsHook
, gitUpdater
}:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "qtxdg-tools";
version = "3.12.0";
version = "4.0.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
hash = "sha256-3i5SVhEMHar09xoSfVCxJtPXeR81orcNR7pSIJImipQ=";
hash = "sha256-w9pFHG+q2oT33Lfg88MUzfWSyvHUgC0Fi2V8XcueJ/Q=";
};
nativeBuildInputs = [
cmake
lxqt-build-tools
wrapQtAppsHook
];
buildInputs = [
qtbase
libqtxdg
qtbase
qtsvg
];
passthru.updateScript = gitUpdater { };