tt-rss-theme-feedly: Init at 1.4.0 (#44634)

This commit is contained in:
Janne Heß 2018-08-07 23:33:15 +02:00 committed by xeji
parent 676f09be67
commit 022b81f3f8
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,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;
};
}

View file

@ -13348,6 +13348,7 @@ with pkgs;
tt-rss = callPackage ../servers/tt-rss { };
tt-rss-plugin-tumblr-gdpr = callPackage ../servers/tt-rss/plugin-tumblr-gdpr { };
tt-rss-theme-feedly = callPackage ../servers/tt-rss/theme-feedly { };
searx = callPackage ../servers/web-apps/searx { };