87 lines
2 KiB
Nix
87 lines
2 KiB
Nix
|
{
|
||
|
lib,
|
||
|
fetchFromGitHub,
|
||
|
makeBinaryWrapper,
|
||
|
nodejs,
|
||
|
pnpm,
|
||
|
stdenv,
|
||
|
substitute,
|
||
|
}:
|
||
|
stdenv.mkDerivation (finalAttrs: {
|
||
|
pname = "rsshub";
|
||
|
version = "0-unstable-2024-07-08";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "DIYgod";
|
||
|
repo = "RSSHub";
|
||
|
rev = "6a29ca395191e745f991b9a0643a2fa9a66c8730";
|
||
|
hash = "sha256-K7qNPF1vdqhNEjWcysnj20Qaltu3rnhi1bVnIEOTiuk=";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
(substitute {
|
||
|
src = ./0001-fix-git-hash.patch;
|
||
|
substitutions = [
|
||
|
"--subst-var-by"
|
||
|
"GIT_HASH"
|
||
|
finalAttrs.src.rev
|
||
|
];
|
||
|
})
|
||
|
];
|
||
|
|
||
|
pnpmDeps = pnpm.fetchDeps {
|
||
|
inherit (finalAttrs) pname version src;
|
||
|
hash = "sha256-1Djef4QRLiEKr6ERtL0/IQSYp9dMq3cOCHPW4QnfaZU=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
makeBinaryWrapper
|
||
|
nodejs
|
||
|
pnpm.configHook
|
||
|
];
|
||
|
|
||
|
buildPhase = ''
|
||
|
runHook preBuild
|
||
|
|
||
|
pnpm build
|
||
|
|
||
|
runHook postBuild
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
|
||
|
mkdir -p $out/bin $out/lib/rsshub
|
||
|
cp -r lib node_modules assets api package.json tsconfig.json $out/lib/rsshub
|
||
|
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
preFixup = ''
|
||
|
makeWrapper ${lib.getExe nodejs} $out/bin/rsshub \
|
||
|
--chdir "$out/lib/rsshub" \
|
||
|
--set "NODE_ENV" "production" \
|
||
|
--set "NO_LOGFILES" "true" \
|
||
|
--set "TSX_TSCONFIG_PATH" "$out/lib/rsshub/tsconfig.json" \
|
||
|
--append-flags "$out/lib/rsshub/node_modules/tsx/dist/cli.mjs" \
|
||
|
--append-flags "$out/lib/rsshub/lib/index.ts"
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "RSS feed generator";
|
||
|
longDescription = ''
|
||
|
RSSHub is an open source, easy to use, and extensible RSS feed generator.
|
||
|
It's capable of generating RSS feeds from pretty much everything.
|
||
|
|
||
|
RSSHub delivers millions of contents aggregated from all kinds of sources,
|
||
|
our vibrant open source community is ensuring the deliver of RSSHub's new routes,
|
||
|
new features and bug fixes.
|
||
|
'';
|
||
|
homepage = "https://docs.rsshub.app";
|
||
|
license = lib.licenses.mit;
|
||
|
maintainers = with lib.maintainers; [ Guanran928 ];
|
||
|
mainProgram = "rsshub";
|
||
|
platforms = lib.platforms.all;
|
||
|
};
|
||
|
})
|