Skip to content

Commit

Permalink
tt-rss: 17.4 -> 2018-01-05 (security)
Browse files Browse the repository at this point in the history
tt-rss switched to a rolling release model

(cherry picked from commit 944376b)
  • Loading branch information
globin authored and gebner committed Mar 25, 2018
1 parent 48b5d28 commit d16ffa1
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions pkgs/servers/tt-rss/default.nix
@@ -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"];
Expand All @@ -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;
};
}

0 comments on commit d16ffa1

Please sign in to comment.