deqp-runner: init at 0.16.1

This commit is contained in:
Benjamin Lee 2023-05-23 21:08:41 -07:00
parent 1422b5b93a
commit 02379010ee
No known key found for this signature in database
GPG Key ID: FB9624E2885D55A4
2 changed files with 26 additions and 0 deletions

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

@ -6858,6 +6858,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 {