mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
32 lines
657 B
Nix
32 lines
657 B
Nix
# To build this derivation, run `nix-build -A nixpkgs-manual.tests.manpage-urls`
|
|
{
|
|
lib,
|
|
runCommand,
|
|
invalidateFetcherByDrvHash,
|
|
cacert,
|
|
python3,
|
|
}:
|
|
|
|
invalidateFetcherByDrvHash (
|
|
{
|
|
name ? "manual_check-manpage-urls",
|
|
script ? ./manpage-urls.py,
|
|
urlsFile ? ../manpage-urls.json,
|
|
}:
|
|
runCommand name
|
|
{
|
|
nativeBuildInputs = [
|
|
cacert
|
|
(python3.withPackages (p: [
|
|
p.aiohttp
|
|
p.rich
|
|
p.structlog
|
|
]))
|
|
];
|
|
outputHash = "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU="; # Empty output
|
|
}
|
|
''
|
|
python3 ${script} ${urlsFile}
|
|
touch $out
|
|
''
|
|
) { }
|