mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2025-11-17 02:54:11 +00:00
robots-ai-txt: rename to ai-robots-txt; update to 1.28
This commit is contained in:
parent
0b3e6433c3
commit
4cb6ed2d62
1 changed files with 8 additions and 4 deletions
37
pkgs/ai-robots-txt/package.nix
Normal file
37
pkgs/ai-robots-txt/package.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
fetchurl,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "ai-robots-txt";
|
||||
version = "1.28";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ai-robots-txt/ai.robots.txt/releases/download/v${finalAttrs.version}/robots.txt";
|
||||
hash = "sha256-Cx01MI5Rss08lLgzwoppou0nqD0HxvfUbsa1NRVp8eQ=";
|
||||
};
|
||||
|
||||
dontUnpack = true;
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/share
|
||||
|
||||
# Only copy relevant files
|
||||
cp .htaccess nginx-block-ai-bots.conf nginx-block-ai-bots.conf able-of-bot-metrics.md $out/share
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "List of AI agents and robots to block";
|
||||
homepage = "https://github.com/ai-robots-txt/ai.robots.txt";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [NotAShelf];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue