tt-rss: 17.4 -> 2018-01-05

tt-rss switched to a rolling release model
This commit is contained in:
Robin Gloster 2018-01-05 14:41:41 +01:00
parent cfed96ca51
commit 944376bc32

View file

@ -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";
};
installPhase = ''
@ -19,8 +19,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;
};
}