miniflux: 2.2.12 -> 2.2.13 (#444352)

authored by Adam C. Stephens and committed by GitHub eb73cc4e 439c4232

+8 -7
+8 -7
pkgs/by-name/mi/miniflux/package.nix
··· 7 nix-update-script, 8 }: 9 10 - buildGoModule rec { 11 pname = "miniflux"; 12 - version = "2.2.12"; 13 14 src = fetchFromGitHub { 15 owner = "miniflux"; 16 repo = "v2"; 17 - tag = version; 18 - hash = "sha256-DeSNI2GFqRF4jdfly44nohCPE4vOXKSaaCkHgKwS4Vs="; 19 }; 20 21 - vendorHash = "sha256-bMm2U+4pzafMD2BoRVbwEkzixOgWqw5eGAmw+OCJ9kQ="; 22 23 nativeBuildInputs = [ installShellFiles ]; 24 ··· 27 ldflags = [ 28 "-s" 29 "-w" 30 - "-X miniflux.app/v2/internal/version.Version=${version}" 31 ]; 32 33 postInstall = '' ··· 42 43 meta = with lib; { 44 description = "Minimalist and opinionated feed reader"; 45 homepage = "https://miniflux.app/"; 46 license = licenses.asl20; 47 maintainers = with maintainers; [ ··· 52 ]; 53 mainProgram = "miniflux"; 54 }; 55 - }
··· 7 nix-update-script, 8 }: 9 10 + buildGoModule (finalAttrs: { 11 pname = "miniflux"; 12 + version = "2.2.13"; 13 14 src = fetchFromGitHub { 15 owner = "miniflux"; 16 repo = "v2"; 17 + tag = finalAttrs.version; 18 + hash = "sha256-u3YnABf+ik7q29JtOSlK+UlInLRq5mMlH7vIDpxOOvk="; 19 }; 20 21 + vendorHash = "sha256-JBT3BUFbPrSpkeZUoGiJJaeiSyXu8y+xcHWPNpxo3cU="; 22 23 nativeBuildInputs = [ installShellFiles ]; 24 ··· 27 ldflags = [ 28 "-s" 29 "-w" 30 + "-X miniflux.app/v2/internal/version.Version=${finalAttrs.version}" 31 ]; 32 33 postInstall = '' ··· 42 43 meta = with lib; { 44 description = "Minimalist and opinionated feed reader"; 45 + changelog = "https://miniflux.app/releases/${finalAttrs.version}.html"; 46 homepage = "https://miniflux.app/"; 47 license = licenses.asl20; 48 maintainers = with maintainers; [ ··· 53 ]; 54 mainProgram = "miniflux"; 55 }; 56 + })