about summary refs log tree commit diff
path: root/doc/tests/manpage-urls.nix
blob: 214c236160098eb27a63710c335bd129aeb37b35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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
    ''
) { }