summary refs log tree commit diff
path: root/pkgs/tools/graphics/deqp-runner
diff options
context:
space:
mode:
authorBenjamin Lee <benjamin@computer.surgery>2023-05-23 21:08:41 -0700
committerBenjamin Lee <benjamin@computer.surgery>2023-06-18 12:44:03 -0700
commit02379010eec658f5f3dc19e2717b783fcdc646ac (patch)
treeca97dc5e13d7704a905a032edda94508f653157c /pkgs/tools/graphics/deqp-runner
parent1422b5b93a21191bad99e1160907adaebb97a9ae (diff)
downloadnixpkgs-02379010eec658f5f3dc19e2717b783fcdc646ac.tar
nixpkgs-02379010eec658f5f3dc19e2717b783fcdc646ac.tar.gz
nixpkgs-02379010eec658f5f3dc19e2717b783fcdc646ac.tar.bz2
nixpkgs-02379010eec658f5f3dc19e2717b783fcdc646ac.tar.lz
nixpkgs-02379010eec658f5f3dc19e2717b783fcdc646ac.tar.xz
nixpkgs-02379010eec658f5f3dc19e2717b783fcdc646ac.tar.zst
nixpkgs-02379010eec658f5f3dc19e2717b783fcdc646ac.zip
deqp-runner: init at 0.16.1
Diffstat (limited to 'pkgs/tools/graphics/deqp-runner')
-rw-r--r--pkgs/tools/graphics/deqp-runner/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/deqp-runner/default.nix b/pkgs/tools/graphics/deqp-runner/default.nix
new file mode 100644
index 00000000000..88fa06d36b3
--- /dev/null
+++ b/pkgs/tools/graphics/deqp-runner/default.nix
@@ -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 ];
+  };
+}