nixpkgs/pkgs/desktops/lxqt/optional/lximage-qt/default.nix
R. RyanTM e5721be7fd lxqt.lximage-qt: 0.6.0 -> 0.7.0 (#42989)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/lximage-qt/versions.

Version release notes (from GitHub):

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/wr81hpk4m9s0pifavbghk1pvsm1sq2k4-lximage-qt-0.7.0/bin/lximage-qt had a zero exit code or showed the expected version
- 0 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.7.0 with grep in /nix/store/wr81hpk4m9s0pifavbghk1pvsm1sq2k4-lximage-qt-0.7.0
- directory tree listing: https://gist.github.com/ddddaf2eec633387ab34637a2853b12a
- du listing: https://gist.github.com/1c221aeb7c136e1c8cdd044093a18e7c
2018-07-08 23:51:15 +02:00

42 lines
910 B
Nix

{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, xorg, lxqt, libfm, libexif }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lximage-qt";
version = "0.7.0";
src = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
sha256 = "1slmaic9cmj5lqa5kwc1qfbbycwh8840wnkg0nxc99ls0aazlpzi";
};
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
buildInputs = [
qt5.qtbase
qt5.qttools
qt5.qtx11extras
qt5.qtsvg
lxqt.libfm-qt
xorg.libpthreadstubs
xorg.libXdmcp
libfm
libexif
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "The image viewer and screenshot tool for lxqt";
homepage = https://github.com/lxde/lximage-qt;
license = licenses.gpl2;
platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
};
}