2023-03-12 13:11:06 +00:00
|
|
|
{ mkDerivation, lib, fetchurl, cmake, exiv2, graphicsmagick, libraw
|
|
|
|
, qtbase, qtdeclarative, qtmultimedia, qtquickcontrols2, qttools, qtgraphicaleffects
|
|
|
|
, extra-cmake-modules, poppler, kimageformats, libarchive, pugixml, wrapQtAppsHook}:
|
2014-12-26 23:18:18 +00:00
|
|
|
|
2019-12-08 14:11:41 +00:00
|
|
|
mkDerivation rec {
|
2019-06-27 06:18:46 +00:00
|
|
|
pname = "photoqt";
|
2023-03-12 13:11:06 +00:00
|
|
|
version = "3.1";
|
2017-08-31 14:12:52 +00:00
|
|
|
|
2014-12-26 23:18:18 +00:00
|
|
|
src = fetchurl {
|
2019-06-27 06:18:46 +00:00
|
|
|
url = "https://${pname}.org/pkgs/${pname}-${version}.tar.gz";
|
2023-03-12 13:11:06 +00:00
|
|
|
hash = "sha256-hihfqE7XIlSAxPg3Kzld3LrYS97wDH//GGqpBpBwFm0=";
|
2014-12-26 23:18:18 +00:00
|
|
|
};
|
|
|
|
|
2023-03-12 13:11:06 +00:00
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules qttools wrapQtAppsHook ];
|
2017-11-16 01:12:18 +00:00
|
|
|
|
2016-01-18 03:53:25 +00:00
|
|
|
buildInputs = [
|
2023-03-12 13:11:06 +00:00
|
|
|
qtbase qtquickcontrols2 exiv2 graphicsmagick poppler
|
2017-08-31 14:12:52 +00:00
|
|
|
qtmultimedia qtdeclarative libraw qtgraphicaleffects
|
2023-03-12 13:11:06 +00:00
|
|
|
kimageformats libarchive pugixml
|
2019-06-27 06:18:46 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DFREEIMAGE=OFF"
|
|
|
|
"-DDEVIL=OFF"
|
2023-03-12 13:11:06 +00:00
|
|
|
"-DCHROMECAST=OFF"
|
2016-01-18 03:53:25 +00:00
|
|
|
];
|
2014-12-26 23:18:18 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export MAGICK_LOCATION="${graphicsmagick}/include/GraphicsMagick"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://photoqt.org/";
|
2014-12-26 23:18:18 +00:00
|
|
|
description = "Simple, yet powerful and good looking image viewer";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
platforms = lib.platforms.unix;
|
2014-12-26 23:18:18 +00:00
|
|
|
};
|
|
|
|
}
|