Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 48b5d287a8bd
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d16ffa150900
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 25, 2018

  1. tt-rss: 17.4 -> 2018-01-05 (security)

    tt-rss switched to a rolling release model
    
    (cherry picked from commit 944376b)
    globin authored and gebner committed Mar 25, 2018
    Copy the full SHA
    d16ffa1 View commit details
Showing with 7 additions and 8 deletions.
  1. +7 −8 pkgs/servers/tt-rss/default.nix
15 changes: 7 additions & 8 deletions pkgs/servers/tt-rss/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchgit }:
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "tt-rss-${version}";
version = "17.4";
version = "2018-01-05";
rev = "c30f5e18119d1935e8fe6d422053b127e8f4f1b3";

src = fetchgit {
url = "https://git.tt-rss.org/git/tt-rss.git";
rev = "refs/tags/${version}";
sha256 = "07ng21n4pva56cxnxkzd6vzs381zn67psqpm51ym5wnl644jqh08";
src = fetchurl {
url = "https://git.tt-rss.org/git/tt-rss/archive/${rev}.tar.gz";
sha256 = "18pc1l0dbjr7d5grcrb70y6j7cr2zb9575yqmy6zfwzrlvw0pa0l";
};

buildPhases = ["unpackPhase" "installPhase"];
@@ -21,8 +21,7 @@ stdenv.mkDerivation rec {
description = "Web-based news feed (RSS/Atom) aggregator";
license = licenses.gpl2Plus;
homepage = http://tt-rss.org;
maintainers = with maintainers; [ zohl ];
maintainers = with maintainers; [ globin zohl ];
platforms = platforms.all;
};
}