mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
31 lines
674 B
Nix
31 lines
674 B
Nix
{ stdenv, lib, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rss-bridge";
|
|
version = "af9996ce3462b5b1ee0a8e6d95b5b010fc26b0a5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "starr-dusT";
|
|
repo = "rss-bridge";
|
|
rev = version;
|
|
sha256 = "sha256-e1VstKjKfnNmjYX0k2FswGF0Kj+AOOEcRqcGw6yyRB8=";
|
|
};
|
|
|
|
patches = [
|
|
./paths.patch
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir $out/
|
|
cp -R ./* $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The RSS feed for websites missing it";
|
|
homepage = "https://github.com/starr-dusT/rss-bridge";
|
|
license = licenses.unlicense;
|
|
maintainers = with maintainers; [ starr-dusT ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|