Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 68c599acd587
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 41f0bae06b1c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 10, 2020

  1. Copy the full SHA
    15bc9d2 View commit details
  2. Merge pull request #92820 from mweinelt/20.03/wallabag

    [20.03] wallabag: apply patches to add missing migrations in initial setup
    maralorn authored Jul 10, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    41f0bae View commit details
Showing with 9 additions and 1 deletion.
  1. +9 −1 pkgs/servers/web-apps/wallabag/default.nix
10 changes: 9 additions & 1 deletion pkgs/servers/web-apps/wallabag/default.nix
Original file line number Diff line number Diff line change
@@ -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;