nixpkgs/pkgs/applications/graphics/photoqt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.1 KiB
Nix
Raw Normal View History

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}:
2019-12-08 14:11:41 +00:00
mkDerivation rec {
pname = "photoqt";
2023-03-12 13:11:06 +00:00
version = "3.1";
src = fetchurl {
url = "https://${pname}.org/pkgs/${pname}-${version}.tar.gz";
2023-03-12 13:11:06 +00:00
hash = "sha256-hihfqE7XIlSAxPg3Kzld3LrYS97wDH//GGqpBpBwFm0=";
};
2023-03-12 13:11:06 +00:00
nativeBuildInputs = [ cmake extra-cmake-modules qttools wrapQtAppsHook ];
2017-11-16 01:12:18 +00:00
buildInputs = [
2023-03-12 13:11:06 +00:00
qtbase qtquickcontrols2 exiv2 graphicsmagick poppler
qtmultimedia qtdeclarative libraw qtgraphicaleffects
2023-03-12 13:11:06 +00:00
kimageformats libarchive pugixml
];
cmakeFlags = [
"-DFREEIMAGE=OFF"
"-DDEVIL=OFF"
2023-03-12 13:11:06 +00:00
"-DCHROMECAST=OFF"
];
preConfigure = ''
export MAGICK_LOCATION="${graphicsmagick}/include/GraphicsMagick"
'';
meta = {
homepage = "https://photoqt.org/";
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;
};
}