mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
28 lines
643 B
Nix
28 lines
643 B
Nix
{ stdenv, fetchFromGitHub }: stdenv.mkDerivation rec {
|
|
pname = "tt-rss-theme-feedly";
|
|
version = "2.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "levito";
|
|
repo = "tt-rss-feedly-theme";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-wZ6Q4cxvJKot1TWE8tOVZeaaeBSXghmkYkOK9GjAnEM=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|