mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
Merge pull request #238325 from Benjamin-L/add-deqp-runner
deqp-runner: init at 0.16.1
This commit is contained in:
commit
a5ab3544cc
@ -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";
|
||||
|
24
pkgs/tools/graphics/deqp-runner/default.nix
Normal file
24
pkgs/tools/graphics/deqp-runner/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user