Merge pull request #92679 from mweinelt/wallabag

wallabag: apply patches to add missing migrations in initial setup
This commit is contained in:
Martin Weinelt 2020-07-10 03:02:57 +02:00 committed by GitHub
commit 50bf24bac4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;