nixpkgs/pkgs/desktops/lxqt/lximage-qt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1,012 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 03:21:50 +01:00
, pkg-config
, qtbase
, qttools
, qtx11extras
, qtsvg
, qtimageformats
, xorg
, lxqt-build-tools
, libfm-qt
, libexif
, menu-cache
, gitUpdater
}:
2016-10-08 15:37:10 +02:00
mkDerivation rec {
2016-10-08 15:37:10 +02:00
pname = "lximage-qt";
2022-04-16 21:16:30 +02:00
version = "1.1.0";
2016-10-08 15:37:10 +02:00
2017-11-02 03:02:29 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-08 15:37:10 +02:00
repo = pname;
rev = version;
2022-04-16 21:16:30 +02:00
sha256 = "QvQ0LBGP9XD7vwuUD+A1x8oGDvqTeCkYyd2XyjU0fUo=";
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
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
menu-cache
2016-10-08 15:37:10 +02:00
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lximage-qt";
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
};
}