Merge pull request #92679 from mweinelt/wallabag
wallabag: apply patches to add missing migrations in initial setup
This commit is contained in:
commit
50bf24bac4
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue