Unverified Commit 5a2ba3cb authored by Naïm Favier's avatar Naïm Favier Committed by GitHub
Browse files

Merge pull request #239133 from ncfavier/miniflux

miniflux: 2.0.44 -> 2.0.45
parents 13c9bc70 4973ac5a
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -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}"