555cd8a8f9
GitOrigin-RevId: 5633bcff0c6162b9e4b5f1264264611e950c8ec7
30 lines
697 B
Nix
30 lines
697 B
Nix
{ stdenv, lib, fetchFromGitHub, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rss-bridge";
|
|
version = "2024-02-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RSS-Bridge";
|
|
repo = "rss-bridge";
|
|
rev = version;
|
|
sha256 = "sha256-VycEgu7uHYwDnNE1eoVxgaWZAnC6mZLBxT8Le3PI4Rs=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out/
|
|
cp -R ./* $out
|
|
'';
|
|
|
|
passthru.tests = {
|
|
basic-functionality = nixosTests.rss-bridge;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "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;
|
|
};
|
|
}
|