nft-prefix-import: switch to fork with stdin fix
The service fails on mimas with "Argument list too long" because the blocked ASNs now announce more prefixes than fit into a single nft argv. Point the input at the fork carrying the stdin-based fix until https://github.com/mweinelt/nft-prefix-import/pull/2 is merged.
Jörg Thalheim committed
Apr 21, 2026 at 00:04 UTC
7d400ce2e65a27b1db2b936349263ec28cae4f77
2 files changed
+8
-6
flake.lock
+6
-5
@@ -349,15 +349,16 @@
349
]
350
},
351
"locked": {
352
- "lastModified": 1772134399,
353
- "narHash": "sha256-O9YSvxHkNhMUB3U/WdC/R1np6biaxqoglPDUQHx5KIc=",
354
- "owner": "mweinelt",
352
+ "lastModified": 1776722121,
353
+ "narHash": "sha256-DGXg6ODTQAP914+edQgfNwRhvu9cER9vtACtH235XP8=",
354
+ "owner": "Mic92",
355
"repo": "nft-prefix-import",
356
- "rev": "fbe66b91d7f0c818e0966e275d284095969cfe9b",
356
+ "rev": "c69c6463c5a3fb51a0e65a4b5981252486157a92",
357
"type": "github"
358
},
359
"original": {
360
- "owner": "mweinelt",
360
+ "owner": "Mic92",
361
+ "ref": "nft-stdin",
362
"repo": "nft-prefix-import",
363
"type": "github"
364
}
flake.nix
+2
-1
@@ -83,7 +83,8 @@
83
};
84
85
nft-prefix-import = {
86
- url = "github:mweinelt/nft-prefix-import";
86
+ # https://github.com/mweinelt/nft-prefix-import/pull/2
87
+ url = "github:Mic92/nft-prefix-import/nft-stdin";
88
inputs.nixpkgs.follows = "nixpkgs-unstable";
89
};
90