lxqt.libqtxdg: 3.12.0 -> 4.0.0

This commit is contained in:
José Romildo 2024-04-18 14:21:39 -03:00
parent 716b484fae
commit 59c0ff043d
1 changed files with 10 additions and 4 deletions

View File

@ -1,27 +1,33 @@
{ lib
, mkDerivation
, stdenv
, fetchFromGitHub
, cmake
, qtbase
, qtsvg
, lxqt-build-tools
, wrapQtAppsHook
, gitUpdater
, version ? "4.0.0"
}:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "libqtxdg";
version = "3.12.0";
inherit version;
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
hash = "sha256-y+3noaHubZnwUUs8vbMVvZPk+6Fhv37QXUb//reedCU=";
hash = {
"3.12.0" = "sha256-y+3noaHubZnwUUs8vbMVvZPk+6Fhv37QXUb//reedCU=";
"4.0.0" = "sha256-TTFgkAI3LulYGuqdhorkjNYyo942y1oFy5SRAKl9ZxU=";
}."${version}";
};
nativeBuildInputs = [
cmake
lxqt-build-tools
wrapQtAppsHook
];
buildInputs = [