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

55 lines
955 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 02:21:50 +00:00
, pkg-config
, qtbase
, qttools
, qtx11extras
, qtsvg
, xorg
, lxqt-build-tools
, libfm-qt
, libexif
, lxqtUpdateScript
}:
2016-10-08 13:37:10 +00:00
mkDerivation rec {
2016-10-08 13:37:10 +00:00
pname = "lximage-qt";
2021-11-05 17:35:00 +00:00
version = "1.0.0";
2016-10-08 13:37:10 +00:00
2017-11-02 02:02:29 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-08 13:37:10 +00:00
repo = pname;
rev = version;
2021-11-05 17:35:00 +00:00
sha256 = "1bf0smkawyibrabw7zcynwr2afpsv7pnnyxn4nqgh6mxnp7al157";
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
2017-02-19 12:33:42 +00:00
];
2016-10-08 13:37:10 +00:00
buildInputs = [
2019-02-05 23:14:27 +00:00
qtbase
qttools
qtx11extras
qtsvg
2018-05-22 13:54:16 +00:00
libfm-qt
2016-10-08 13:37:10 +00:00
xorg.libpthreadstubs
xorg.libXdmcp
libexif
];
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
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 13:37:10 +00:00
platforms = with platforms; unix;
2017-02-19 12:33:42 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-08 13:37:10 +00:00
};
}