summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/web-apps/wallabag/default.nix
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2021-01-18 15:21:28 +0100
committerGitHub <noreply@github.com>2021-01-18 15:21:28 +0100
commit6867c3b3ff5f5c5402ef86c143d34998c103dee8 (patch)
tree946266bc79a1781c26160a6c634d70babe41ee27 /pkgs/servers/web-apps/wallabag/default.nix
parent5f9ed9811f32a840c18b53dc185b57acda62e34f (diff)
parentd90b0f22cf327959e9868aa75af2ff97e49e5e6b (diff)
Merge pull request #106597 from mweinelt/wallabag
wallabag: 2.3.8 -> 2.4.0
Diffstat (limited to 'pkgs/servers/web-apps/wallabag/default.nix')
-rw-r--r--pkgs/servers/web-apps/wallabag/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/servers/web-apps/wallabag/default.nix b/pkgs/servers/web-apps/wallabag/default.nix
index 6417064663a1..c8722fbe8f75 100644
--- a/pkgs/servers/web-apps/wallabag/default.nix
+++ b/pkgs/servers/web-apps/wallabag/default.nix
@@ -2,25 +2,19 @@
stdenv.mkDerivation rec {
pname = "wallabag";
- version = "2.3.8";
+ version = "2.4.0";
# remember to rm -r var/cache/* after a rebuild or unexpected errors will occur
src = fetchurl {
url = "https://static.wallabag.org/releases/wallabag-release-${version}.tar.gz";
- sha256 = "1sr62hfk2f2rl5by48dg8yd1gchngjnc850as17wr3w287p1kwsq";
+ sha256 = "11vda7aqq82kpr88v4hr7zg19zfq970n3z4qp25my8b1fvlgdjhi";
};
outputs = [ "out" ];
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;