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

42 lines
905 B
Nix
Raw Normal View History

2018-05-22 13:54:16 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, xorg, lxqt-build-tools, libfm-qt, libexif }:
2016-10-08 13:37:10 +00:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lximage-qt";
version = "0.7.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;
sha256 = "1slmaic9cmj5lqa5kwc1qfbbycwh8840wnkg0nxc99ls0aazlpzi";
2016-10-08 13:37:10 +00:00
};
2017-02-19 12:33:42 +00:00
nativeBuildInputs = [
cmake
pkgconfig
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 = [
qt5.qtbase
qt5.qttools
qt5.qtx11extras
qt5.qtsvg
2018-05-22 13:54:16 +00:00
libfm-qt
2016-10-08 13:37:10 +00:00
xorg.libpthreadstubs
xorg.libXdmcp
libexif
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "The image viewer and screenshot tool for lxqt";
homepage = https://github.com/lxqt/lximage-qt;
2016-10-08 13:37:10 +00:00
license = licenses.gpl2;
platforms = with platforms; unix;
2017-02-19 12:33:42 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-08 13:37:10 +00:00
};
}