d83cadf841
related to #28643
31 lines
916 B
Nix
31 lines
916 B
Nix
{ stdenv, fetchurl, cmake, exiv2, graphicsmagick, libraw
|
|
, qtbase, qtdeclarative, qtmultimedia, qtquickcontrols, qttools, qtgraphicaleffects
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "photoqt-${version}";
|
|
version = "1.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://photoqt.org/pkgs/photoqt-${version}.tar.gz";
|
|
sha256 = "17kkpzkmzfnigs26jjyd75iy58qffjsclif81cmviq73lzmqy0b1";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [
|
|
qtbase qtquickcontrols qttools exiv2 graphicsmagick
|
|
qtmultimedia qtdeclarative libraw qtgraphicaleffects
|
|
];
|
|
|
|
preConfigure = ''
|
|
export MAGICK_LOCATION="${graphicsmagick}/include/GraphicsMagick"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://photoqt.org/;
|
|
description = "Simple, yet powerful and good looking image viewer";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.eduarrrd ];
|
|
};
|
|
}
|