wallabag: 2.5.1 -> 2.5.2

https://github.com/wallabag/wallabag/releases/tag/2.5.2
This commit is contained in:
Martin Weinelt 2022-10-21 22:14:43 +02:00
parent 0fe643128c
commit 3ca6e6613b
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -15,15 +15,18 @@
let
pname = "wallabag";
version = "2.5.1";
version = "2.5.2";
in
stdenv.mkDerivation {
inherit pname version;
# GitHub distribution does not include vendored files
# Release tarball includes vendored files
src = fetchurl {
url = "https://static.wallabag.org/releases/wallabag-release-${version}.tar.gz";
hash = "sha256-vurjWI5Sh/SFPtxd5cHaaw7edcAzNub/duhOUF+Wshk=";
urls = [
"https://static.wallabag.org/releases/wallabag-release-${version}.tar.gz"
"https://github.com/wallabag/wallabag/releases/download/${version}/wallabag-${version}.tar.gz"
];
hash = "sha256-Q989SorGPm3KBuQhGAinYU6HGIa9RrhtRPvwGALU6jk=";
};
patches = [