summary refs log tree commit diff
path: root/pkgs/servers/tt-rss/theme-feedly/default.nix
blob: 4a9312ae459c65a8aa478335b58002c8a8262a9f (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
27
{ stdenv, fetchFromGitHub }: stdenv.mkDerivation rec {
  name = "tt-rss-theme-feedly-${version}";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner = "levito";
    repo = "tt-rss-feedly-theme";
    rev = "v${version}";
    sha256 = "1n5vci84l0wxsd2k90m2x3j8d7y9kz5fqc6fk6y7r568p1cakg9b";
  };

  dontBuild = true;

  installPhase = ''
    mkdir $out

    cp -ra feedly feedly.css $out
  '';

  meta = with stdenv.lib; {
    description = "Feedly theme for Tiny Tiny RSS";
    license = licenses.wtfpl;
    homepage = https://github.com/levito/tt-rss-feedly-theme;
    maintainers = with maintainers; [ das_j ];
    platforms = platforms.all;
  };
}