chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / xt / xtf / package.nix
blobacf98626b1abd267e56d68bee5f322b6a8c648b3
2   lib,
3   fetchgit,
4   unstableGitUpdater,
5   stdenv,
6   doxygen,
7   graphviz,
8   python3Packages,
9 }:
11 stdenv.mkDerivation {
12   pname = "xtf";
13   version = "0-unstable-2024-09-13";
15   outputs = [
16     "out" # xtf-runner and test suite.
17     "doc" # Autogenerated HTML documentation website.
18     "dev" # Development headers.
19   ];
21   src = fetchgit {
22     url = "https://xenbits.xenproject.org/git-http/xtf.git";
23     rev = "c9a5e404e70c21c7621db4b8cabdf68261db7e1c";
24     hash = "sha256-FMFbAdgH5KCpocAzUXb7nM3wpn4xs/gk/0M8AUVxXv0=";
25   };
27   nativeBuildInputs =
28     (with python3Packages; [
29       python
30       wrapPython
31     ])
32     ++ [
33       doxygen
34       graphviz
35     ];
37   buildFlags = [ "doxygen" ];
39   installFlags = [
40     "xtfdir=$(out)/share/xtf"
41   ];
43   postInstall =
44     # Much like Xen, XTF installs its files to dist/nix/store/*/*,
45     # so we need to copy them to the right place.
46     ''
47       mkdir -p ''${!outputBin}/share
48       cp -prvd dist/nix/store/*/* ''${!outputBin}
49     ''
50     # The documentation and development headers aren't in the dist/
51     # folder, so we copy those too.
52     + ''
53       mkdir -p ''${!outputDoc}/share/doc/xtf
54       cp -prvd docs/autogenerated/html ''${!outputDoc}/share/doc/xtf
56       mkdir -p ''${!outputDev}/include
57       cp -prvd include ''${!outputDev}
58     ''
59     # Wrap xtf-runner, and link it to $out/bin.
60     # This is necessary because the real xtf-runner should
61     # be in the same directory as the tests/ directory.
62     + ''
63       wrapPythonProgramsIn "''${!outputBin}/share/xtf" "''${!outputBin} $pythonPath"
64       mkdir -p ''${!outputBin}/bin
65       ln -s ''${!outputBin}/share/xtf/xtf-runner ''${!outputBin}/bin/xtf-runner
66     '';
68   passthru.updateScript = unstableGitUpdater { };
70   meta = {
71     description = "Xen Test Framework and Suite for creating microkernel-based tests";
72     homepage = "https://xenbits.xenproject.org/docs/xtf/index.html";
73     license = lib.licenses.bsd2;
74     maintainers = lib.teams.xen.members;
75     mainProgram = "xtf-runner";
76     platforms = lib.lists.intersectLists lib.platforms.linux lib.platforms.x86_64;
77   };