2019-07-27 14:05:17 -07:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, qtbase, qttools,
|
2019-02-05 15:14:27 -08:00
|
|
|
qtx11extras, qtsvg, xorg, lxqt-build-tools, libfm-qt, libexif }:
|
2016-10-08 06:37:10 -07:00
|
|
|
|
2019-07-27 14:05:17 -07:00
|
|
|
mkDerivation rec {
|
2016-10-08 06:37:10 -07:00
|
|
|
pname = "lximage-qt";
|
2019-02-26 13:32:03 -08:00
|
|
|
version = "0.14.1";
|
2016-10-08 06:37:10 -07:00
|
|
|
|
2017-11-01 19:02:29 -07:00
|
|
|
src = fetchFromGitHub {
|
2018-05-21 18:24:38 -07:00
|
|
|
owner = "lxqt";
|
2016-10-08 06:37:10 -07:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-02-26 13:32:03 -08:00
|
|
|
sha256 = "175l2w5w6iag01v05jq90pxx0al24wpw3mgsbcgqhl4z6h860r32";
|
2016-10-08 06:37:10 -07:00
|
|
|
};
|
|
|
|
|
2017-02-19 04:33:42 -08:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
2018-05-22 06:54:16 -07:00
|
|
|
lxqt-build-tools
|
2017-02-19 04:33:42 -08:00
|
|
|
];
|
2016-10-08 06:37:10 -07:00
|
|
|
|
|
|
|
buildInputs = [
|
2019-02-05 15:14:27 -08:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtx11extras
|
|
|
|
qtsvg
|
2018-05-22 06:54:16 -07:00
|
|
|
libfm-qt
|
2016-10-08 06:37:10 -07:00
|
|
|
xorg.libpthreadstubs
|
|
|
|
xorg.libXdmcp
|
|
|
|
libexif
|
|
|
|
];
|
|
|
|
|
2019-07-27 14:05:17 -07:00
|
|
|
meta = with lib; {
|
2016-10-08 06:37:10 -07:00
|
|
|
description = "The image viewer and screenshot tool for lxqt";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/lxqt/lximage-qt";
|
2016-10-08 06:37:10 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = with platforms; unix;
|
2017-02-19 04:33:42 -08:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-08 06:37:10 -07:00
|
|
|
};
|
|
|
|
}
|