nixpkgs/pkgs/servers/tt-rss/theme-feedly/default.nix
2019-03-14 19:01:32 +01:00

28 lines
654 B
Nix

{ stdenv, fetchFromGitHub }: stdenv.mkDerivation rec {
name = "tt-rss-theme-feedly-${version}";
version = "2.0.0";
src = fetchFromGitHub {
owner = "levito";
repo = "tt-rss-feedly-theme";
rev = "v${version}";
sha256 = "024hngwzfdgw5jqppc8vh75jidfqghaccy969hvbhxhgk6j6l8m4";
};
dontBuild = true;
installPhase = ''
mkdir $out
cp -ra 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;
};
}