Compare commits

..

No commits in common. "064d9bc935dea2a9e715af76d094c520a7976966" and "420135d75412c190b7faa9a02af49f9a5ba2d141" have entirely different histories.

3 changed files with 4 additions and 37 deletions

BIN
flake.lock generated

Binary file not shown.

View file

@ -51,9 +51,9 @@
"url": "https://codeberg.org/dnkl/fuzzel.git" "url": "https://codeberg.org/dnkl/fuzzel.git"
}, },
"branch": "master", "branch": "master",
"revision": "36471ffa94114f17496af668fb062b385b3dffe9", "revision": "5396fa1dc8bfe218041c53cb5c76d7658d136a9f",
"url": null, "url": null,
"hash": "0lskx6rfq76idgmdbgqdby0z59dylm3j44v8pb59nnjb8wr9wpcn" "hash": "1n1pc0l8vf2ld2f58h1lbscpas5iyqrwpj3bpimkicrnw2rs0qfj"
}, },
"mov-cli": { "mov-cli": {
"type": "GitRelease", "type": "GitRelease",
@ -73,8 +73,8 @@
"nixpkgs": { "nixpkgs": {
"type": "Channel", "type": "Channel",
"name": "nixpkgs-unstable", "name": "nixpkgs-unstable",
"url": "https://releases.nixos.org/nixpkgs/nixpkgs-25.05pre755223.632f04521e84/nixexprs.tar.xz", "url": "https://releases.nixos.org/nixpkgs/nixpkgs-25.05pre751383.b2243f41e860/nixexprs.tar.xz",
"hash": "13aw89p6riwmaq21gc2pby9kzkx523psin41yi4wldha03mkxkis" "hash": "1j7j5dg1hwy7r8c61ghxshiq0k5cq0852b5730h0w5knmhlfj2a4"
}, },
"rat": { "rat": {
"type": "GitRelease", "type": "GitRelease",

View file

@ -1,33 +0,0 @@
{
lib,
stdenvNoCC,
fetchurl,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "ai-robots-txt";
version = "1.25";
src = fetchurl {
url = "https://github.com/ai-robots-txt/ai.robots.txt/releases/download/v${finalAttrs.version}/robots.txt";
hash = "sha256-r4C+RDNpzfokBkvTG1v1D9gbu5zpC91+onQFYw05lZE=";
};
dontUnpack = true;
dontConfigure = true;
dontBuild = true;
installPhase = ''
runHook preInstall
cp $src $out
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.bsd3;
maintainers = with lib.maintainers; [NotAShelf];
platforms = lib.platforms.all;
};
})