1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00
nixpkgs/pkgs/servers/web-apps/rss-bridge/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
651 B
Nix
Raw Normal View History

2021-05-07 13:27:09 +01:00
{ stdenv, lib, fetchFromGitHub }:
2020-08-13 18:49:28 +01:00
stdenv.mkDerivation rec {
pname = "rss-bridge";
version = "2024-02-02";
2020-08-13 18:49:28 +01:00
src = fetchFromGitHub {
owner = "RSS-Bridge";
repo = "rss-bridge";
rev = version;
sha256 = "sha256-VycEgu7uHYwDnNE1eoVxgaWZAnC6mZLBxT8Le3PI4Rs=";
2020-08-13 18:49:28 +01:00
};
patches = [
./paths.patch
];
2020-08-13 18:49:28 +01:00
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;
2023-10-22 21:01:22 +01:00
maintainers = with maintainers; [ dawidsowa mynacol ];
2020-08-13 18:49:28 +01:00
platforms = platforms.all;
};
}