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

tt-rss switched to a rolling release model

+7 -8
+7 -8
pkgs/servers/tt-rss/default.nix
··· 1 - { stdenv, fetchgit }: 1 + { stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "tt-rss-${version}"; 5 - version = "17.4"; 5 + version = "2018-01-05"; 6 + rev = "c30f5e18119d1935e8fe6d422053b127e8f4f1b3"; 6 7 7 - src = fetchgit { 8 - url = "https://git.tt-rss.org/git/tt-rss.git"; 9 - rev = "refs/tags/${version}"; 10 - sha256 = "07ng21n4pva56cxnxkzd6vzs381zn67psqpm51ym5wnl644jqh08"; 8 + src = fetchurl { 9 + url = "https://git.tt-rss.org/git/tt-rss/archive/${rev}.tar.gz"; 10 + sha256 = "18pc1l0dbjr7d5grcrb70y6j7cr2zb9575yqmy6zfwzrlvw0pa0l"; 11 11 }; 12 12 13 13 installPhase = '' ··· 19 19 description = "Web-based news feed (RSS/Atom) aggregator"; 20 20 license = licenses.gpl2Plus; 21 21 homepage = http://tt-rss.org; 22 - maintainers = with maintainers; [ zohl ]; 22 + maintainers = with maintainers; [ globin zohl ]; 23 23 platforms = platforms.all; 24 24 }; 25 25 } 26 -