photoqt: 1.7.1 -> 3.1
Fix build
This commit is contained in:
parent
b0cdb866af
commit
61c8a0f6bc
1 changed files with 9 additions and 16 deletions
|
@ -1,35 +1,28 @@
|
||||||
{ mkDerivation, lib, fetchurl, cmake, exiv2, graphicsmagick, libraw, fetchpatch
|
{ mkDerivation, lib, fetchurl, cmake, exiv2, graphicsmagick, libraw
|
||||||
, qtbase, qtdeclarative, qtmultimedia, qtquickcontrols, qttools, qtgraphicaleffects
|
, qtbase, qtdeclarative, qtmultimedia, qtquickcontrols2, qttools, qtgraphicaleffects
|
||||||
, extra-cmake-modules, poppler, kimageformats, libarchive}:
|
, extra-cmake-modules, poppler, kimageformats, libarchive, pugixml, wrapQtAppsHook}:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "photoqt";
|
pname = "photoqt";
|
||||||
version = "1.7.1";
|
version = "3.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://${pname}.org/pkgs/${pname}-${version}.tar.gz";
|
url = "https://${pname}.org/pkgs/${pname}-${version}.tar.gz";
|
||||||
sha256 = "1qvxdh3cbjcywqx0da2qp8z092660qyzv5yknqbps2zr12qqb103";
|
hash = "sha256-hihfqE7XIlSAxPg3Kzld3LrYS97wDH//GGqpBpBwFm0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
nativeBuildInputs = [ cmake extra-cmake-modules qttools wrapQtAppsHook ];
|
||||||
# Fixes build with exiv2 0.27.1
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://gitlab.com/luspi/photoqt/commit/c6fd41478e818f3a651d40f96cab3d790e1c09a4.patch";
|
|
||||||
sha256 = "1j2pdr7hm3js7lswhb4qkf9sj9viclhjqz50qxpyd7pqrl1gf2va";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake extra-cmake-modules qttools ];
|
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
qtbase qtquickcontrols exiv2 graphicsmagick poppler
|
qtbase qtquickcontrols2 exiv2 graphicsmagick poppler
|
||||||
qtmultimedia qtdeclarative libraw qtgraphicaleffects
|
qtmultimedia qtdeclarative libraw qtgraphicaleffects
|
||||||
kimageformats libarchive
|
kimageformats libarchive pugixml
|
||||||
];
|
];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DFREEIMAGE=OFF"
|
"-DFREEIMAGE=OFF"
|
||||||
"-DDEVIL=OFF"
|
"-DDEVIL=OFF"
|
||||||
|
"-DCHROMECAST=OFF"
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
|
Loading…
Reference in a new issue