Skip to content

Commit

Permalink
Merge pull request #32228 from bkchr/digikam
Browse files Browse the repository at this point in the history
digikam: Fix empty album problem with Qt 5.9.3
  • Loading branch information
Mic92 committed Dec 2, 2017
2 parents d1ddc3f + f2d8970 commit 278f2fa
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pkgs/applications/graphics/digikam/default.nix
@@ -1,4 +1,4 @@
{ mkDerivation, lib, fetchurl, cmake, doxygen, extra-cmake-modules, wrapGAppsHook
{ mkDerivation, lib, fetchurl, cmake, doxygen, extra-cmake-modules, wrapGAppsHook, fetchpatch

# For `digitaglinktree`
, perl, sqlite
Expand Down Expand Up @@ -114,6 +114,16 @@ mkDerivation rec {
--replace "/usr/bin/sqlite3" "${sqlite}/bin/sqlite3"
'';

patches = [
# fix Qt-5.9.3 empty album problem
(fetchpatch {
url = "https://cgit.kde.org/digikam.git/patch/?id=855ba5b7d4bc6337234720a72ea824ddd3b32e5b";
sha256 = "0zk8p182piy6xn9v0mhwawya9ciq596vql1qc3lgnx371a97mmni";
})
];

patchFlags = "-d core -p1";

meta = with lib; {
description = "Photo Management Program";
license = licenses.gpl2;
Expand Down

0 comments on commit 278f2fa

Please sign in to comment.