2016-06-05 19:55:46 +01:00
|
|
|
{ stdenv, fetchgit }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tt-rss-${version}";
|
2017-07-16 22:30:34 +01:00
|
|
|
version = "17.4";
|
2016-06-05 19:55:46 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
2017-07-16 22:30:34 +01:00
|
|
|
url = "https://git.tt-rss.org/git/tt-rss.git";
|
2016-06-05 19:55:46 +01:00
|
|
|
rev = "refs/tags/${version}";
|
2017-07-16 22:30:34 +01:00
|
|
|
sha256 = "07ng21n4pva56cxnxkzd6vzs381zn67psqpm51ym5wnl644jqh08";
|
2016-06-05 19:55:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
cp -ra * $out/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Web-based news feed (RSS/Atom) aggregator";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
homepage = http://tt-rss.org;
|
|
|
|
maintainers = with maintainers; [ zohl ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|