Merge pull request #238325 from Benjamin-L/add-deqp-runner

deqp-runner: init at 0.16.1
This commit is contained in:
Emily 2023-06-18 23:33:10 +02:00 committed by GitHub
commit a5ab3544cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 0 deletions

View file

@ -1957,6 +1957,16 @@
fingerprint = "E9A3 7864 2165 28CE 507C CA82 72EA BF75 C331 CD25";
}];
};
Benjamin-L = {
name = "Benjamin Lee";
email = "benjamin@computer.surgery";
matrix = "@benjamin:computer.surgery";
github = "Benjamin-L";
githubId = 6504174;
keys = [{
fingerprint = "9D84 09A0 44FC 1EEB AE2D FA30 FB96 24E2 885D 55A4";
}];
};
benkuhn = {
email = "ben@ben-kuhn.com";
github = "ben-kuhn";

View file

@ -0,0 +1,24 @@
{ lib, fetchFromGitLab, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "deqp-runner";
version = "0.16.1";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "anholt";
repo = "deqp-runner";
rev = "v${version}";
hash = "sha256-Spx7Y0es+s3k2dod/kdEgypncED8mNR23uRdOOcLxJc=";
};
cargoHash = "sha256-G4fxtpIhwAVleJ+0rN1+ZhKWw7QbWTB5aLUa3EdFyvA=";
meta = with lib; {
description = "A VK-GL-CTS/dEQP wrapper program to parallelize it across CPUs and report results against a baseline";
homepage = "https://gitlab.freedesktop.org/anholt/deqp-runner";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ Benjamin-L ];
};
}

View file

@ -6876,6 +6876,8 @@ with pkgs;
deno = callPackage ../development/web/deno { };
deqp-runner = callPackage ../tools/graphics/deqp-runner { };
detox = callPackage ../tools/misc/detox { };
devilspie2 = callPackage ../applications/misc/devilspie2 {