Unverified Commit eb73cc4e authored by Adam C. Stephens's avatar Adam C. Stephens Committed by GitHub
Browse files

miniflux: 2.2.12 -> 2.2.13 (#444352)

parents 439c4232 8356c8b8
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -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";
  };
}
})