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