tt-rss service: init at 16.3

This commit is contained in:
Al Zohali
2016-07-21 20:46:35 +03:00
parent 6b3f5b5a42
commit 98e419c0e2
4 changed files with 598 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{ stdenv, fetchgit }:
stdenv.mkDerivation rec {
name = "tt-rss-${version}";
version = "16.3";
src = fetchgit {
url = "https://tt-rss.org/gitlab/fox/tt-rss.git";
rev = "refs/tags/${version}";
sha256 = "1584lcq6kcy9f8ik5djb9apck9hxvfpl54sn6yhl3pdfrfdj3nw5";
};
buildPhases = ["unpackPhase" "installPhase"];
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;
};
}