mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
31 lines
651 B
Nix
31 lines
651 B
Nix
{ stdenv, lib, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rss-bridge";
|
|
version = "2024-02-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RSS-Bridge";
|
|
repo = "rss-bridge";
|
|
rev = version;
|
|
sha256 = "sha256-VycEgu7uHYwDnNE1eoVxgaWZAnC6mZLBxT8Le3PI4Rs=";
|
|
};
|
|
|
|
patches = [
|
|
./paths.patch
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir $out/
|
|
cp -R ./* $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The RSS feed for websites missing it";
|
|
homepage = "https://github.com/RSS-Bridge/rss-bridge";
|
|
license = licenses.unlicense;
|
|
maintainers = with maintainers; [ dawidsowa mynacol ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|