wallabag: apply patches to add missing migrations in initial setup

Fixes: https://github.com/wallabag/wallabag/issues/3662
This commit is contained in:
Martin Weinelt 2020-07-08 06:31:48 +02:00
parent 9ba5521365
commit b07693e718
No known key found for this signature in database
GPG Key ID: BD4AA0528F63F17E

View File

@ -13,7 +13,15 @@ stdenv.mkDerivation rec {
outputs = [ "out" ];
patches = [ ./wallabag-data.patch ]; # exposes $WALLABAG_DATA
patches = [
./wallabag-data.patch # exposes $WALLABAG_DATA
(fetchurl {
# Fixes "Uncaught RuntimeException: Setting "piwik_enabled" couldn't be found."; https://github.com/wallabag/wallabag/issues/3662
# Remove >= 2.4.0
url = "https://github.com/wallabag/wallabag/pull/3868.patch";
sha256 = "0pfxsv8ncaxkjkybim3v3iswmfv1vbjlzmvj50nn9blvjwc9gxjg";
})
];
dontBuild = true;