summary refs log tree commit diff
path: root/pkgs/servers/tt-rss/default.nix
blob: 8724adfdad6d26e329dba49def252a5c39086d32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchgit }:

stdenv.mkDerivation rec {
  name = "tt-rss-${version}";
  version = "17.4";

  src = fetchgit {
    url = "https://git.tt-rss.org/git/tt-rss.git";
    rev = "refs/tags/${version}";
    sha256 = "07ng21n4pva56cxnxkzd6vzs381zn67psqpm51ym5wnl644jqh08";
  };

  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;
  };
}