miniflux: 2.0.44 -> 2.0.45

https://github.com/miniflux/v2/releases/tag/2.0.45
This commit is contained in:
Naïm Favier 2023-06-22 09:49:15 +02:00
parent 395e5d76a7
commit 4973ac5ada
No known key found for this signature in database
GPG key ID: 95AFCE8211908325

View file

@ -2,7 +2,7 @@
let
pname = "miniflux";
version = "2.0.44";
version = "2.0.45";
in buildGoModule {
inherit pname version;
@ -11,16 +11,14 @@ in buildGoModule {
owner = pname;
repo = "v2";
rev = version;
sha256 = "sha256-PBhoKDljLpgi8cJicY7U7yrW3qNPDMzno/6PacOZ76E=";
sha256 = "sha256-/d5+Qc2kXZZkKe80+879YdxYt+zy/Y1sf2dwSjGw0EM=";
};
vendorHash = "sha256-Ydd1LiVq4cCyj7dvcwxpKNU1HjcvXbSerHYJNoV/YQY=";
vendorHash = "sha256-nwKo4Sjg8HjuxeDUgwQYZ2LOHxkRSlyaBlQwSjOuJ7U=";
nativeBuildInputs = [ installShellFiles ];
checkPhase = ''
go test $(go list ./... | grep -v client)
''; # skip client tests as they require network access
checkFlags = [ "-skip=TestClient" ]; # skip client tests as they require network access
ldflags = [
"-s" "-w" "-X miniflux.app/version.Version=${version}"