2020-05-03 17:38:23 +00:00
|
|
|
{ lib
|
2024-04-21 15:54:59 +00:00
|
|
|
, stdenv
|
2020-05-03 17:38:23 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2021-02-05 17:12:51 +00:00
|
|
|
, pkg-config
|
2024-04-21 15:54:59 +00:00
|
|
|
, libXdmcp
|
2020-05-03 17:38:23 +00:00
|
|
|
, libexif
|
2024-04-21 15:54:59 +00:00
|
|
|
, libfm-qt
|
|
|
|
, libpthreadstubs
|
|
|
|
, lxqt-build-tools
|
2022-08-12 12:06:08 +00:00
|
|
|
, menu-cache
|
2024-04-21 15:54:59 +00:00
|
|
|
, qtbase
|
|
|
|
, qtimageformats
|
|
|
|
, qtsvg
|
|
|
|
, qttools
|
|
|
|
, qtwayland
|
|
|
|
, wrapQtAppsHook
|
2022-10-06 18:32:54 +00:00
|
|
|
, gitUpdater
|
2020-05-03 17:38:23 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "lximage-qt";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "2.0.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lxqt";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2024-05-15 15:35:15 +00:00
|
|
|
hash = "sha256-I0DyC8i+OnHxHcpp/xPsKjr3UgvUHlVO8h9Tjhg7Pg8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2021-02-05 17:12:51 +00:00
|
|
|
pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
lxqt-build-tools
|
2023-11-16 04:20:00 +00:00
|
|
|
qttools
|
2024-04-21 15:54:59 +00:00
|
|
|
wrapQtAppsHook
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2024-04-21 15:54:59 +00:00
|
|
|
libXdmcp
|
2020-04-24 23:36:52 +00:00
|
|
|
libexif
|
2024-04-21 15:54:59 +00:00
|
|
|
libfm-qt
|
|
|
|
libpthreadstubs
|
2022-08-12 12:06:08 +00:00
|
|
|
menu-cache
|
2024-04-21 15:54:59 +00:00
|
|
|
qtbase
|
|
|
|
qtimageformats # add-on module to support more image file formats
|
|
|
|
qtsvg
|
|
|
|
qtwayland
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
passthru.updateScript = gitUpdater { };
|
2020-05-03 17:38:23 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/lxqt/lximage-qt";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Image viewer and screenshot tool for lxqt";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "lximage-qt";
|
2021-02-13 14:23:35 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = with platforms; unix;
|
2022-04-27 09:35:20 +00:00
|
|
|
maintainers = teams.lxqt.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|