summaryrefslogtreecommitdiffstats
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorJosé Romildo <malaquias@gmail.com>2024-04-18 14:21:40 -0300
committerJosé Romildo <malaquias@gmail.com>2024-04-19 14:38:58 -0300
commitc6fedad618fcf193c15962f6cb73dc0ed7e5a383 (patch)
tree14ca8eb20204d3e7cf52d0179fd3f94aa4051e59 /pkgs/desktops
parentad6f920cd705e97b6084605e81b7bcb4fbfcc43c (diff)
lxqt.lxqt-archiver: 0.9.0 -> 1.0.0
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/lxqt/lxqt-archiver/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/desktops/lxqt/lxqt-archiver/default.nix b/pkgs/desktops/lxqt/lxqt-archiver/default.nix
index 0adf8a085965..9cef42cdb629 100644
--- a/pkgs/desktops/lxqt/lxqt-archiver/default.nix
+++ b/pkgs/desktops/lxqt/lxqt-archiver/default.nix
@@ -1,5 +1,5 @@
{ lib
-, mkDerivation
+, stdenv
, fetchFromGitHub
, cmake
, pkg-config
@@ -10,19 +10,20 @@
, menu-cache
, qtbase
, qttools
-, qtx11extras
+, qtwayland
+, wrapQtAppsHook
, gitUpdater
}:
-mkDerivation rec {
+stdenv.mkDerivation rec {
pname = "lxqt-archiver";
- version = "0.9.0";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = "lxqt-archiver";
rev = version;
- hash = "sha256-8pfUpyjn01D8CL+2PjGkZqyHu+lpHZIXlXn67rZoxMY=";
+ hash = "sha256-32Wq0Faphu0uSG0RdOqrDD/igrNaP6l1mtuV+HcsdcQ=";
};
nativeBuildInputs = [
@@ -30,6 +31,7 @@ mkDerivation rec {
pkg-config
lxqt-build-tools
qttools
+ wrapQtAppsHook
];
buildInputs = [
@@ -38,7 +40,7 @@ mkDerivation rec {
libfm-qt
menu-cache
qtbase
- qtx11extras
+ qtwayland
];
hardeningDisable = [ "format" ];