Skip to content

Commit

Permalink
digikam: Fix empty album problem with Qt 5.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bkchr committed Dec 1, 2017
1 parent d7fb709 commit f2d8970
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pkgs/applications/graphics/digikam/default.nix
Original file line number Diff line number Diff line change
@@ -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 f2d8970

Please sign in to comment.