miniflux: 2.2.12 -> 2.2.13 (#444352)

This commit is contained in:
Adam C. Stephens
2025-09-19 15:48:34 +00:00
committed by GitHub
+8 -7
View File
@@ -7,18 +7,18 @@
nix-update-script,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "miniflux";
version = "2.2.12";
version = "2.2.13";
src = fetchFromGitHub {
owner = "miniflux";
repo = "v2";
tag = version;
hash = "sha256-DeSNI2GFqRF4jdfly44nohCPE4vOXKSaaCkHgKwS4Vs=";
tag = finalAttrs.version;
hash = "sha256-u3YnABf+ik7q29JtOSlK+UlInLRq5mMlH7vIDpxOOvk=";
};
vendorHash = "sha256-bMm2U+4pzafMD2BoRVbwEkzixOgWqw5eGAmw+OCJ9kQ=";
vendorHash = "sha256-JBT3BUFbPrSpkeZUoGiJJaeiSyXu8y+xcHWPNpxo3cU=";
nativeBuildInputs = [ installShellFiles ];
@@ -27,7 +27,7 @@ buildGoModule rec {
ldflags = [
"-s"
"-w"
"-X miniflux.app/v2/internal/version.Version=${version}"
"-X miniflux.app/v2/internal/version.Version=${finalAttrs.version}"
];
postInstall = ''
@@ -42,6 +42,7 @@ buildGoModule rec {
meta = with lib; {
description = "Minimalist and opinionated feed reader";
changelog = "https://miniflux.app/releases/${finalAttrs.version}.html";
homepage = "https://miniflux.app/";
license = licenses.asl20;
maintainers = with maintainers; [
@@ -52,4 +53,4 @@ buildGoModule rec {
];
mainProgram = "miniflux";
};
}
})