Commit 14726274 authored by Felix Buehler's avatar Felix Buehler
Browse files
parent 509aac3f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ import ../make-test-python.nix (
      machine.wait_for_unit("multi-user.target")
      machine.wait_for_open_port(80)
      response = machine.succeed("curl -vvv -s http://localhost:80/i/")
      assert '<title>Main stream · FreshRSS</title>' in response, "FreshRSS stream page didn't load successfully"
      assert '<title> · FreshRSS</title>' in response, "FreshRSS stream page didn't load successfully"
    '';
  }
)
+2 −2
Original line number Diff line number Diff line
@@ -8,13 +8,13 @@

stdenvNoCC.mkDerivation rec {
  pname = "FreshRSS";
  version = "1.25.0";
  version = "1.26.0";

  src = fetchFromGitHub {
    owner = "FreshRSS";
    repo = "FreshRSS";
    rev = version;
    hash = "sha256-jBIU8xxXsl/67sebo8MS59Q0dWBTe0tO+xpVf1/uo0c=";
    hash = "sha256-J3YYx2enB8NHxgWUcJHStd5LkGRIB6dx3avbjhyIs3Q=";
  };

  postPatch = ''