Skip to content

Commit

Permalink
wallabag: apply patches to add missing migrations in initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Jul 8, 2020
1 parent 9ba5521 commit b07693e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/servers/web-apps/wallabag/default.nix
Expand Up @@ -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;

Expand Down

0 comments on commit b07693e

Please sign in to comment.