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

43 lines
910 B
Nix
Raw Normal View History

2017-02-19 13:33:42 +01:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, xorg, lxqt, libfm, libexif }:
2016-10-08 15:37:10 +02:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lximage-qt";
2017-11-02 03:02:29 +01:00
version = "0.6.0";
2016-10-08 15:37:10 +02:00
2017-11-02 03:02:29 +01:00
src = fetchFromGitHub {
2016-10-08 15:37:10 +02:00
owner = "lxde";
repo = pname;
rev = version;
2017-11-02 03:02:29 +01:00
sha256 = "0zmrpfgmlq005zikyvhqbpip6mz6pfcf9aqjpncyc5vlggmh28ym";
2016-10-08 15:37:10 +02:00
};
2017-02-19 13:33:42 +01:00
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
2016-10-08 15:37:10 +02:00
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;
2017-02-19 13:33:42 +01:00
maintainers = with maintainers; [ romildo ];
2016-10-08 15:37:10 +02:00
};
}