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